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.
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
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
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
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,
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,