Staging
v0.5.1
https://github.com/python/cpython
Revision c2e1a8fb7f1c38f7825147cea08903c5e84a7893 authored by Raymond Hettinger on 09 October 2002, 03:53:10 UTC, committed by Raymond Hettinger on 09 October 2002, 03:53:10 UTC
1 parent f8e943f
Raw File
Tip revision: c2e1a8fb7f1c38f7825147cea08903c5e84a7893 authored by Raymond Hettinger on 09 October 2002, 03:53:10 UTC
List specific updates for IDLE.
Tip revision: c2e1a8f
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