Staging
v0.5.1
https://github.com/python/cpython
Revision f3dcafecd3827aa5c6a99c807c3300ec8f65f650 authored by Barry Warsaw on 16 October 1998, 22:29:18 UTC, committed by Barry Warsaw on 16 October 1998, 22:29:18 UTC
1 parent 179c36e
Raw File
Tip revision: f3dcafecd3827aa5c6a99c807c3300ec8f65f650 authored by Barry Warsaw on 16 October 1998, 22:29:18 UTC
The driver script on Unix is `pynche'; for Windows `pynche.pyw'
Tip revision: f3dcafe
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern int Py_Main();

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