Staging
v0.5.1
https://github.com/python/cpython
Revision baee0d42c91801748790e1c5097428f48a424f44 authored by Fred Drake on 01 March 2001, 06:01:20 UTC, committed by Fred Drake on 01 March 2001, 06:01:20 UTC
1 parent 40fc160
Raw File
Tip revision: baee0d42c91801748790e1c5097428f48a424f44 authored by Fred Drake on 01 March 2001, 06:01:20 UTC
Bump the release number to 2.1b1.
Tip revision: baee0d4
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