https://github.com/python/cpython
Raw File
Tip revision: 3b9d793efcfd2c00c14ffbeab1a3389bf3b095ff authored by Thomas Wouters on 14 November 2022, 11:12:42 UTC
Python 3.12.0a2
Tip revision: 3b9d793
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_BytesMain(argc, argv);
}
#endif
back to top