Staging
v0.8.1
https://github.com/python/cpython
Revision a63beee897c0ad21abd426f1ddf0ecd03ceaf245 authored by Fred Drake on 22 May 2003, 15:28:22 UTC, committed by Fred Drake on 22 May 2003, 15:28:22 UTC
document" text from html/stdabout.dat, not html/about.dat.
1 parent 92a21a4
Raw File
Tip revision: a63beee897c0ad21abd426f1ddf0ecd03ceaf245 authored by Fred Drake on 22 May 2003, 15:28:22 UTC
Correct dependency information -- the Python docs load the "About this
Tip revision: a63beee
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