SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

72125 0 15 Python
/* Minimal main program -- everything is loaded from the library */
1998-08-08 20:01:22 +00:00
#include "Python.h"
#include "pycore_pylifecycle.h"
#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
return Py_Main(argc, argv);
}
#else
1997-08-15 02:52:08 +00:00
int
main(int argc, char **argv)
{
return _Py_UnixMain(argc, argv);
}
#endif