https://github.com/python/cpython
Raw File
Tip revision: 2e91dba437fe5c56c6f8213294eeb7a704760509 authored by Pablo Galindo on 08 December 2021, 22:23:08 UTC
Python 3.11.0a3
Tip revision: 2e91dba
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