Staging
v0.5.1
https://github.com/python/cpython
Revision 283b670f6bd9c00faa12fbf9f7c97abc79c73dcd authored by Fred Drake on 04 August 2004, 22:28:16 UTC, committed by Fred Drake on 04 August 2004, 22:28:16 UTC
1 parent 9b625d3
Raw File
Tip revision: 283b670f6bd9c00faa12fbf9f7c97abc79c73dcd authored by Fred Drake on 04 August 2004, 22:28:16 UTC
add constants for many error values added over the past couple of
Tip revision: 283b670
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