https://github.com/python/cpython
Raw File
Tip revision: 878ead1ac1651965126322c1b3d124faf5484dc6 authored by Pablo Galindo on 07 February 2023, 13:37:13 UTC
Python 3.11.2
Tip revision: 878ead1
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