Discussion:
[Python.NET] python 2.7 build
Kevin Manley
2010-10-19 16:16:34 UTC
Permalink
Hi,
Can you please provide a Python 2.7 build, or give me some pointers on how to build it myself?
I tried building it with Visual Studio 2008 but my result crashes when I call clr.AddReference(...)
Thanks,
Kevin


----------------------------------------

This message is intended exclusively for the individual(s) or entity to
which it is addressed. It may contain information that is proprietary,
privileged or confidential or otherwise legally exempt from disclosure.
If you are not the named addressee, you are not authorized to read,
print, retain, copy or disseminate this message or any part of it.
If you have received this message in error, please notify the sender
immediately by e-mail and delete all copies of the message.
Barton
2010-10-21 08:33:49 UTC
Permalink
To quote the originator of this project: The Python.Runtime "has a lot
of carnal knowledge" of the inner workings of python. It may take a
while longer before the additions that have been made to python 2.7
become integrated into the pythonnet's Python.Runtime (and don't expect
3K any time soon).
Post by Kevin Manley
Hi,
Can you please provide a Python 2.7 build, or give me some pointers
on how to build it myself?
I tried building it with Visual Studio 2008 but my result crashes when
I call clr.AddReference(...)
Thanks,
Kevin
----------------------------------------
This message is intended exclusively for the individual(s) or entity to
which it is addressed. It may contain information that is proprietary,
privileged or confidential or otherwise legally exempt from disclosure.
If you are not the named addressee, you are not authorized to read,
print, retain, copy or disseminate this message or any part of it.
If you have received this message in error, please notify the sender
immediately by e-mail and delete all copies of the message.
_________________________________________________
http://mail.python.org/mailman/listinfo/pythondotnet
Christian Heimes
2010-10-21 15:29:22 UTC
Permalink
Post by Barton
To quote the originator of this project: The Python.Runtime "has a lot
of carnal knowledge" of the inner workings of python. It may take a
while longer before the additions that have been made to python 2.7
become integrated into the pythonnet's Python.Runtime (and don't expect
3K any time soon).
Years ago it took me a lot of time and fiddling to add support for
Python 2.5 and 2.6. Python.NET heavily relies on the Python ABI and
memory layout of structs. Everytime a struct member is added, removed or
modified the type definitions in Python.NET must follow, too. Your best
change to get it fixed is a diff of all header files between the
release26-maint and release27-maint branch. Good luck!

Christian

_________________________________________________
Python.NET mailing list - PythonDotNet-+ZN9ApsXKcEdnm+***@public.gmane.org
http://mail.python.org/mailman/listinfo/pythondotnet

Loading...