Staging
v0.5.1
https://github.com/python/cpython
Revision f226f408647044e531112ad16e95dba966d90970 authored by Anthony Baxter on 10 January 2002, 11:12:20 UTC, committed by Anthony Baxter on 10 January 2002, 11:12:20 UTC
sent with empty message.

sheesh. Lucky I decided it was worth doing last minute complete compile
tests. cvs merge stupid on my part fixed that made solaris builds totally
fail.
1 parent ca1512c
Raw File
Tip revision: f226f408647044e531112ad16e95dba966d90970 authored by Anthony Baxter on 10 January 2002, 11:12:20 UTC
cosmetic change to add a commit message for the last commit, accidently
Tip revision: f226f40
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern DL_EXPORT(int) Py_Main(int, char **);

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