Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 4b47a5b6ba66b02df9392feb97b8ead916f8c1fa authored by Ned Deily on 27 June 2020, 08:35:53 UTC
3.7.8
Tip revision: 4b47a5b
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
    return Py_Main(argc, argv);
}
#else
int
main(int argc, char **argv)
{
    return _Py_UnixMain(argc, argv);
}
#endif
back to top