Staging
v0.5.1
https://github.com/python/cpython
Revision 95b81e2f8c955823dbf5632a817902b8a4916eaa authored by Miss Islington (bot) on 15 September 2020, 23:59:48 UTC, committed by GitHub on 15 September 2020, 23:59:48 UTC
(cherry picked from commit bff01f3a3aac0c15fe8fbe8b2f561f7927d117a1)
1 parent 49917d5
Raw File
Tip revision: 95b81e2f8c955823dbf5632a817902b8a4916eaa authored by Miss Islington (bot) on 15 September 2020, 23:59:48 UTC
bpo-39587: Enum - use correct mixed-in data type (GH-22263) (GH-22266)
Tip revision: 95b81e2
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