Staging
v0.5.1
https://github.com/python/cpython
Revision bc3b13643d6afe604455f339c29d0d9c34be35f0 authored by Guido van Rossum on 05 October 1997, 18:54:36 UTC, committed by Guido van Rossum on 05 October 1997, 18:54:36 UTC
1 parent eb53ae4
Raw File
Tip revision: bc3b13643d6afe604455f339c29d0d9c34be35f0 authored by Guido van Rossum on 05 October 1997, 18:54:36 UTC
Removed emacs.py
Tip revision: bc3b136
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