Staging
v0.5.1
https://github.com/python/cpython
Revision 10c98db7f5ccf0af9d8803a132ca8641193ebda1 authored by chilaxan on 11 October 2020, 18:21:51 UTC, committed by GitHub on 11 October 2020, 18:21:51 UTC
1 parent 8197a93
Raw File
Tip revision: 10c98db7f5ccf0af9d8803a132ca8641193ebda1 authored by chilaxan on 11 October 2020, 18:21:51 UTC
Fix typo in listobject.h (GH-22588)
Tip revision: 10c98db
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