Staging
v0.5.1
https://github.com/python/cpython
Revision df9c2c2a8ef255de132f755da88b1a52250ae795 authored by Martin v. Löwis on 24 August 2005, 06:07:17 UTC, committed by Martin v. Löwis on 24 August 2005, 06:07:17 UTC
1 parent 6f9e3ca
Raw File
Tip revision: df9c2c2a8ef255de132f755da88b1a52250ae795 authored by Martin v. Löwis on 24 August 2005, 06:07:17 UTC
Patch #1262036: Make tarfile name absolute. Fixes #1257255.
Tip revision: df9c2c2
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