https://github.com/python/cpython
Raw File
Tip revision: f009305a7d635f86440c804a2916f8fa4d7fc637 authored by Thomas Wouters on 17 January 2024, 12:09:05 UTC
Python 3.13.0a3
Tip revision: f009305
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