Skip to content

Commit 499174c

Browse files
author
guido
committed
This is now the "real" main program -- it calls Py_Main(argc, argv)
which is in the library and does all the work. git-svn-id: http://svn.python.org/projects/python/trunk@8330 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent cee543f commit 499174c

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Modules/python.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* Minimal main program -- everything is loaded from the library */
2+
3+
extern int Py_Main();
4+
5+
main(argc, argv)
6+
int argc;
7+
char **argv;
8+
{
9+
return Py_Main(argc, argv);
10+
}

0 commit comments

Comments
 (0)