Staging
v0.5.1
https://github.com/python/cpython
Revision 673163869de363d6e698e9bf17b3c7eec34a179d authored by Barry Warsaw on 19 August 2003, 04:55:06 UTC, committed by Barry Warsaw on 19 August 2003, 04:55:06 UTC
1 parent e2c5dc7
Raw File
Tip revision: 673163869de363d6e698e9bf17b3c7eec34a179d authored by Barry Warsaw on 19 August 2003, 04:55:06 UTC
Describe the fix to the email package.
Tip revision: 6731638
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