Staging
v0.5.1
https://github.com/python/cpython
Revision bfeb74d4ca22102d6056bf8c1f115e643b1cc079 authored by Fred Drake on 04 October 1997, 04:56:40 UTC, committed by Fred Drake on 04 October 1997, 04:56:40 UTC
	$exec_prefix/lib/python$VERSION/site-packages by default.
1 parent d99d714
Raw File
Tip revision: bfeb74d4ca22102d6056bf8c1f115e643b1cc079 authored by Fred Drake on 04 October 1997, 04:56:40 UTC
install: New target that installs shared modules in
Tip revision: bfeb74d
python.c
/* Minimal main program -- everything is loaded from the library */

extern int Py_Main();

int
main(argc, argv)
	int argc;
	char **argv;
{
	return Py_Main(argc, argv);
}
back to top