Staging
v0.5.1
https://github.com/python/cpython
Revision 996a1ef8ae26869a5d0792e0bae615806f50594b authored by pxinwr on 28 November 2020, 21:49:47 UTC, committed by GitHub on 28 November 2020, 21:49:47 UTC
1 parent 64c8f81
Raw File
Tip revision: 996a1ef8ae26869a5d0792e0bae615806f50594b authored by pxinwr on 28 November 2020, 21:49:47 UTC
skip test_test of test_mailcap on VxWorks (GH-23507)
Tip revision: 996a1ef
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