openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
P
Python for .NET
Settings
|
Report Duplicate
4
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Moderate Activity
Commits
: Listings
Analyzed
about 1 hour
ago. based on code collected
about 1 hour
ago.
Jan 12, 2025 — Jan 12, 2026
Showing page 65 of 69
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Merge pull request #9 from tonyroberts/travis-ci
David Anthoff
More...
almost 12 years ago
- make sure threads are initialized when starting/importing clr - replace use of Forms in unittests with alternative equivalent tests
Tony Roberts
More...
almost 12 years ago
Merge pull request #8 from tonyroberts/travis-ci
David Anthoff
More...
almost 12 years ago
set __file__, __doc__ and __class__ on ModuleObject to make the managed modules behave better in ipython (%autoreload expects __file__ to be set and the ipython help ? expects __class__ to be set).
Tony Roberts
More...
almost 12 years ago
Update README.md
Tony Roberts
More...
almost 12 years ago
Build with mono on linux and add travis-ci settings
Tony Roberts
More...
almost 12 years ago
Merge pull request #4 from davidanthoff/fixemptynamespace
David Anthoff
More...
almost 12 years ago
Fix source code formatting
David Anthoff
More...
almost 12 years ago
Delete old duplicate doc files
David Anthoff
More...
almost 12 years ago
Ignore generic types in the root namespace
David Anthoff
More...
almost 12 years ago
Upgrade solution file to Visual Studio 2013
David Anthoff
More...
almost 12 years ago
Reference Python.Runtime in Console project
David Anthoff
More...
almost 12 years ago
Add .gitignore
David Anthoff
More...
almost 12 years ago
Switch NuGet to package restore mode
David Anthoff
More...
almost 12 years ago
add unit tests to check python classes can derive from C# interfaces
Tony Roberts
More...
almost 12 years ago
get the constructors from the base class rather than the type when building a derived class, as the type could be an interface
Tony Roberts
More...
about 12 years ago
fix derived types so managed classes can be declared in python by subclassing interfaces
Tony Roberts
More...
about 12 years ago
allow base class methods to be called from derived classes either from the class directly or using super
Tony Roberts
More...
about 12 years ago
don't convert IEnumerables to python lists unless nothing else matches (strings shouldn't be converted to lists, for example)
Tony Roberts
More...
about 12 years ago
merge from patstew-master
Tony Roberts
More...
about 12 years ago
- Ensure python threads are always initialized, even if the main interpreter hasn't initialized them, otherwise attempting to dereference objects in finalizers called by the concurrent GC will fail. - Dispose of PyObject instances after use in CreateSubType rather than wait for the GC - Don't try and dereference derived class instances after python has shutdown if called from the GC
Tony Roberts
More...
about 12 years ago
creating instances of classes that are managed types sub-classed in python from managed code now works
Tony Roberts
More...
about 12 years ago
managed types can now be subclassed in python and override virtual methods
Tony Roberts
More...
about 12 years ago
Add missing ) so sample code in README works
Zane D. Purvis
More...
over 12 years ago
Update README.md
patstew
More...
over 12 years ago
Fix readme formatting.
patstew
More...
over 12 years ago
Create README.md
patstew
More...
over 12 years ago
Use the c# dynamic functionality for python objects. This means that python functions can be called directly, members can be accessed as normal (a.b) and mathematical operations work, and run in python (a = b*c).
Patrick Stewart
More...
over 12 years ago
Add convenience functions to new Py class. Supports "using (Py.GIL()) {}" blocks to setup the python interpreter and take/release the GIL, and Py.kw("key1", value1, "key2", value2, ...) to add keyword arguments.
Patrick Stewart
More...
over 12 years ago
Add more of the PyNumber API to support mathematical operations.
Patrick Stewart
More...
over 12 years ago
←
1
2
…
61
62
63
64
65
66
67
68
69
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree