4
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 9 hours ago. based on code collected about 9 hours ago.
Jan 06, 2025 — Jan 06, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
From a667bc8b29744a4baafaccc3806d19830a7bdeeb Mon Sep 17 00:00:00 2001 From: Alexey Borzenkov <[email protected]> Date: Tue, 16 Dec 2008 12:08:31 +0300 Subject: Build Python.Net with Python 2.6 More... over 15 years ago
Just revisited this and tried to rebuild and I realized I had the instructions wrong, and I hadn't checked in the last of our changes last time we got it working. Sorry, I don't remember why these changes were done, but it's what we're using, and it works for us (I just built it on OSX and tested it a little and it's working.) More... over 16 years ago
Fixed PythonDotNET for Python 2.6 PythonDotNET does *not* support several new features like the backported buffer protocol, bytearray and version tags (yet) More... over 17 years ago
-fix for binding to certain overloaded methods while running under mono (thanks to Geoff Norton at Novell.) More... over 17 years ago
Added fixes to get Python.NET working under Mono 1.9 on Mac OS X. More... over 17 years ago
Just a fake commit to make a note in history that revision 95 is from Joe Frayne. More... almost 18 years ago
Fixes for a bad merge in the last couple of patches... More... almost 18 years ago
1. In cases where the generic parameters do not match the arguments on overloaded methods, the method binder often picked the wrong method. This is because it picks the method when it looks at the generic parameters, before it knows what the arguments are. Now when it gets to evaluating the arguments, it uses the generic parameters in the picked method AND the arguments to try to re-bind to the proper method. This works with calls like this: More... almost 18 years ago
Adding support for conversion from python float to object... patch #1801233 from anonymous More... almost 18 years ago
Under cpython 2.5.1 and Microsoft .NET 2.x, CodeGenerator's ctor was causing an exception when calling Thread.GetDomain().DefineDynamicAssembly. A "fix" for this seems to be to make this call happen before Python.Runtime.Runtime.Initialize(). To do this, CodeGenerator is no longer a static class (along with the classes that use it). DelegateManager (the owner of the only CodeGenerator instance) is then created in PythonEngine.Initialize, ahead of the Runtime.Initialize() call. This "fix" is probably masking some bad mojo happening somewhere down in Runtime.Initialize(). More... almost 18 years ago
64-bit support on Windows. Note I didn't update anything to do with "mdp" files or makefile, as I don't know anything about those. These changes purely update the Visual Studio files to have an option to build 64bit (the x64 solution platform). More... almost 18 years ago
testStrOfException was depending on implementation detail that was half-way through an Exception.StackTrace. The detail changed in Windows .NET 2.0+, so now it checks the base of the trace ("System.Convert.ToDateTime"). More... almost 18 years ago
Added setup.py to release files Added Python.Runtime.dll.config More... about 18 years ago
Improved PyLong so it actually supports int64. More... about 18 years ago
Fixed bug in UCS2/UCS4 detection. Thx to Sanghyeon Seo More... about 18 years ago
Updated Makefile Bumped version of clrmodule.il Added Python.Runtime.dll.config More... about 18 years ago
Changed the PythonException.Message value so it displays the name of the exception class instead ("Exception") instead of its representation ("<type 'exceptions.Exception'>"). More... over 18 years ago
Err, somehow the unit test fix for clr.get/setPreload got lost ... More... over 18 years ago
Updated readme.html Added code for Python 2.3 (not officially supported) Changed clr.preload to clr.setPreload() and clr.getPreload(). I know that setters and getters are old school but even Python doesn't support module properties :( More... over 18 years ago
Fixed mono_config.txt Some fixes and enhancements for the Makefile under Windows and for make dist Fixed PyObject_TYPE for Py_DEBUG builds Fixed an issue with implicit calls of generic methods More... over 18 years ago
The mono based clr module now raises an import error when it can't load the assembly or initialize PythonNet Mono exceptions are dumped as well. More... over 18 years ago
Default to Python 2.5 Renamed solution file to pythonnet.sln. It's not Python 2.5 specific Enhanced make dist. It builds a signed assemblies for 2.4 and 2.5 for both UCS 2 and 4 with GPG keys, md5 and sha256 sum More... over 18 years ago
Fixed new Makefile for Windows Updated changes.txt More... over 18 years ago
Code cleanup: Replaced \t with 8 spaces in all *.cs files More... over 18 years ago
Removed old makefiles Added a one size fits all Makefile for Windows and Mono including support for autodetection of UCS 2/3 and Python version More... over 18 years ago
Merged revision r43:75 from https://pythonnet.svn.sourceforge.net/svnroot/pythonnet/branches/clr-2.0-python-2.5-branch into the trunk More... over 18 years ago
Added PyIter, an easy way to enumerate python iterators or sequences. More... about 19 years ago
PythonException now has a meaningful message (The message of the actual python exception that was raised). More... about 19 years ago
Made PyObject.ToString() and PyString(string) work with unicode strings. Added embed_tests. More... about 19 years ago
checkpoint More... over 19 years ago