https://github.com/python/cpython
Raw File
Tip revision: 4ae1a0ecaffe4320fe9774fad1f395f732c17959 authored by Thomas Wouters on 24 October 2022, 22:07:03 UTC
Python 3.12.0a1
Tip revision: 4ae1a0e
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