Re: [Python.NET] Configuration on Ubuntu: Assembly not found error...

2007-11-17 Thread Sanghyeon Seo
2007/11/18, Jim <[EMAIL PROTECTED]>: > Obviously python is not finding my Python.Runtime.dll. Where should this > file be copied so that it can be found no matter where python is launched? You should install it to the Global Assembly Cache(GAC). $ gacutil -i Python.Runtime.dll -- Seo Sanghyeo

Re: [Python.NET] Experimental C Extensions from IronPython with Python.NET - code and article

2007-10-23 Thread Sanghyeon Seo
2007/10/24, Michael Foord <[EMAIL PROTECTED]>: > I've just posted the experimental code for accessing CPython extensions > from IronPython. > > Article: http://www.voidspace.org.uk/ironpython/cpython_extensions.shtml > > Comments, bugfixes and improvements welcomed! * Strings from .NET come in as

Re: [Python.NET] UCS2/UCS4 detection

2007-10-18 Thread Sanghyeon Seo
Sanghyeon Seo wrote: > UCS2/UCS4 detection in Makefile doesn't seem to work here. 2007/10/18, Christian Heimes <[EMAIL PROTECTED]>: > What's your full Python version, OS, distribution and the output of > > $ python -c "from distutils.sysconfig import get_c

[Python.NET] UCS2/UCS4 detection

2007-10-17 Thread Sanghyeon Seo
UCS2/UCS4 detection in Makefile doesn't seem to work here. [EMAIL PROTECTED]:~/svn/pythonnet$ python -c 'import sys; print sys.maxunicode' 1114111 [EMAIL PROTECTED]:~/svn/pythonnet$ make Python.Runtime.dll cd "/home/tinuviel/svn/pythonnet/src/runtime"; \ gmcs /define:PYTHON24,UCS2 /nologo

[Python.NET] DllMap on Mono

2007-10-17 Thread Sanghyeon Seo
http://pythonnet.sourceforge.net/readme.html says: Note that if you are running under Mono on a *nix system, you will need to have a compatible version of Python installed. You will also need to create a symbolic link to the copy of libpython2.x.so (in your existing Python installation) in the Pyth