Staging
v0.5.1
https://github.com/python/cpython
Revision 4aa67853cc7d6ed4f9ebb726ceaa2c89f9feabda authored by Terry Jan Reedy on 08 December 2020, 15:29:49 UTC, committed by GitHub on 08 December 2020, 15:29:49 UTC
1 parent 0f91f58
Raw File
Tip revision: 4aa67853cc7d6ed4f9ebb726ceaa2c89f9feabda authored by Terry Jan Reedy on 08 December 2020, 15:29:49 UTC
bpo-41910: move news entry (GH-23695)
Tip revision: 4aa6785
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