Staging
v0.5.1
https://github.com/python/cpython
Revision 9a580c440c4f064a92bbc537ac3a2df1c0998afc authored by Nicholas Riley on 24 September 2000, 06:29:50 UTC, committed by Nicholas Riley on 24 September 2000, 06:29:50 UTC
1 parent 21afd01
Raw File
Tip revision: 9a580c440c4f064a92bbc537ac3a2df1c0998afc authored by Nicholas Riley on 24 September 2000, 06:29:50 UTC
Fixes for Python 1.6 compatibility - socket bind and connect get a
Tip revision: 9a580c4
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