Re: Windows Installer testing using python.

2008-11-28 Thread L. Lindstrom
kalyan wrote: Hi, How can we test Windows Installer using python. Is there any module available for testing? Please mail to [EMAIL PROTECTED] Thanks, Kalyan. For anyone interested, a Python Database API 2.0 module for Windows Installer is in SVN under the Pygame project: svn co svn://seul.

Re: Python 2.6 and wrapping C libraries on Windows

2008-04-30 Thread L. Lindstrom
L. Lindstrom wrote: Christian Heimes wrote: L. Lindstrom schrieb: [snip] [B]esides heap management and FILE pointers, is there any reason SDL, or any C dependency, needs to link to the same C run-time as Python? If I ensure SDL frees memory it allocates and does not directly access a file

Re: Python 2.6 and wrapping C libraries on Windows

2008-04-30 Thread L. Lindstrom
sturlamolden wrote: On Apr 30, 8:06 pm, "L. Lindstrom" <[EMAIL PROTECTED]> wrote: I have read that Python extension modules must link to the same C run-time as the Python interpreter. This I can appreciate. But does this requirement extend to the C libraries an extension modu

Re: Python 2.6 and wrapping C libraries on Windows

2008-04-30 Thread L. Lindstrom
Christian Heimes wrote: L. Lindstrom schrieb: I have read that Python extension modules must link to the same C run-time as the Python interpreter. This I can appreciate. But does this requirement extend to the C libraries an extension module wraps. The case in point is Pygame and SDL. The

Python 2.6 and wrapping C libraries on Windows

2008-04-30 Thread L. Lindstrom
I have read that Python extension modules must link to the same C run-time as the Python interpreter. This I can appreciate. But does this requirement extend to the C libraries an extension module wraps. The case in point is Pygame and SDL. The Pygame extension modules are built with distutils,

Python 2.6, building SDL for Pygame

2008-04-28 Thread L. Lindstrom
I build the Pygame releases for Windows. Pygame wraps the Simple Directmedia Layer (SDL) C library. I am doing preliminary research into porting Pygame to Python 2.6. For Pythons 2.4 and 2.5 the Pygame extension modules are built with MinGW. They link cleanly against msvcr71.dll. A custom SDL,