https://github.com/python/cpython
Raw File
Tip revision: 0771d71eea30316020a86b0eec071feb6d82d350 authored by Pablo Galindo on 25 July 2022, 22:18:57 UTC
Python 3.11.0b5
Tip revision: 0771d71
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