Kaydet (Commit) 4c04be64 authored tarafından Guido van Rossum's avatar Guido van Rossum

This is now the "real" main program -- it calls Py_Main(argc, argv)

which is in the library and does all the work.
üst 3768fb10
/* Minimal main program -- everything is loaded from the library */
extern int Py_Main();
main(argc, argv)
int argc;
char **argv;
{
return Py_Main(argc, argv);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment