Staging
v0.5.1
https://github.com/python/cpython
Revision 7594a1c56e986f2a9d7f80ac54d650a6b301895f authored by Martin v. Löwis on 14 June 2003, 05:52:27 UTC, committed by Martin v. Löwis on 14 June 2003, 05:52:27 UTC
1 parent 1db3e75
Raw File
Tip revision: 7594a1c56e986f2a9d7f80ac54d650a6b301895f authored by Martin v. Löwis on 14 June 2003, 05:52:27 UTC
Patch #754340: Fix typo in redirect_request.
Tip revision: 7594a1c
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