4
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 1 hour ago. based on code collected about 1 hour ago.
Jan 12, 2025 — Jan 12, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge pull request #9 from tonyroberts/travis-ci More... almost 12 years ago
- make sure threads are initialized when starting/importing clr - replace use of Forms in unittests with alternative equivalent tests More... almost 12 years ago
Merge pull request #8 from tonyroberts/travis-ci 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). More... almost 12 years ago
Update README.md More... almost 12 years ago
Build with mono on linux and add travis-ci settings More... almost 12 years ago
Merge pull request #4 from davidanthoff/fixemptynamespace More... almost 12 years ago
Fix source code formatting More... almost 12 years ago
Delete old duplicate doc files More... almost 12 years ago
Ignore generic types in the root namespace More... almost 12 years ago
Upgrade solution file to Visual Studio 2013 More... almost 12 years ago
Reference Python.Runtime in Console project More... almost 12 years ago
Add .gitignore More... almost 12 years ago
Switch NuGet to package restore mode More... almost 12 years ago
add unit tests to check python classes can derive from C# interfaces 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 More... about 12 years ago
fix derived types so managed classes can be declared in python by subclassing interfaces More... about 12 years ago
allow base class methods to be called from derived classes either from the class directly or using super 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) More... about 12 years ago
merge from patstew-master 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 More... about 12 years ago
creating instances of classes that are managed types sub-classed in python from managed code now works More... about 12 years ago
managed types can now be subclassed in python and override virtual methods More... about 12 years ago
Add missing ) so sample code in README works More... over 12 years ago
Update README.md More... over 12 years ago
Fix readme formatting. More... over 12 years ago
Create README.md 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). 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. More... over 12 years ago
Add more of the PyNumber API to support mathematical operations. More... over 12 years ago