Staging
v0.5.1
https://github.com/python/cpython
Revision 90584c02b4dcfc087bee5e4131b7ba72b669d58a authored by Miss Islington (bot) on 09 July 2020, 10:18:30 UTC, committed by GitHub on 09 July 2020, 10:18:30 UTC
(cherry picked from commit ee96f32ca24779656d3c8736d26671fc3689f0a3)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent e689789
Raw File
Tip revision: 90584c02b4dcfc087bee5e4131b7ba72b669d58a authored by Miss Islington (bot) on 09 July 2020, 10:18:30 UTC
bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407)
Tip revision: 90584c0
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