Staging
v0.5.1
https://github.com/python/cpython
Revision 070e68a59d4a3e36085957eea83b79181bd1e0ba authored by Miss Islington (bot) on 21 January 2020, 01:12:07 UTC, committed by GitHub on 21 January 2020, 01:12:07 UTC
(cherry picked from commit 8698b34b68065b80bd9bd18b8decb425208fa386)

Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de>
1 parent c1964e0
Raw File
Tip revision: 070e68a59d4a3e36085957eea83b79181bd1e0ba authored by Miss Islington (bot) on 21 January 2020, 01:12:07 UTC
improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)
Tip revision: 070e68a
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"
#include "pycore_pylifecycle.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