Staging
v0.5.1
https://github.com/python/cpython
Revision 88821f7c2020eccd8c41cf1926be465abda7a1c4 authored by Raymond Hettinger on 22 July 2003, 06:33:13 UTC, committed by Raymond Hettinger on 22 July 2003, 06:33:13 UTC
1 parent 291f14e
Raw File
Tip revision: 88821f7c2020eccd8c41cf1926be465abda7a1c4 authored by Raymond Hettinger on 22 July 2003, 06:33:13 UTC
Important usability fix in itertools documentation.
Tip revision: 88821f7
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