Staging
v0.5.1
https://github.com/python/cpython
Revision c93d68bbb986ee0879f5627223e0bd2bb91f63dd authored by Miss Islington (bot) on 09 December 2019, 19:22:30 UTC, committed by GitHub on 09 December 2019, 19:22:30 UTC
(cherry picked from commit b8cbe74c3498c617f0e73fd0cdc5c07f2c532092)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent 3c5feaf
Raw File
Tip revision: c93d68bbb986ee0879f5627223e0bd2bb91f63dd authored by Miss Islington (bot) on 09 December 2019, 19:22:30 UTC
bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a deprecation warning (GH-17540)
Tip revision: c93d68b
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