Staging
v0.5.1
https://github.com/python/cpython
Revision 40b2e839246aa74f08eea1c2abb60e5ca93ecab0 authored by Jack Jansen on 21 July 2003, 22:11:07 UTC, committed by Jack Jansen on 21 July 2003, 22:11:07 UTC
This lead to a duplication of error messages (and installs). Fixes #764615.
1 parent a7203d1
Raw File
Tip revision: 40b2e839246aa74f08eea1c2abb60e5ca93ecab0 authored by Jack Jansen on 21 July 2003, 22:11:07 UTC
We erronuously re-used the pimpinstaller object if there were multiple installs.
Tip revision: 40b2e83
ccpython.cc
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern "C"
DL_EXPORT(int) Py_Main( int argc, char *argv[] );

int main( int argc, char *argv[] )
{
	return Py_Main(argc, argv);
}
back to top