Staging
v0.5.1
https://github.com/python/cpython
Revision 4b828467a3fcec0c1947e8326f67b8db12a4f303 authored by Miss Islington (bot) on 28 May 2018, 20:44:12 UTC, committed by GitHub on 28 May 2018, 20:44:12 UTC
(cherry picked from commit 8267ea2e84d355f00654dec3ad782fc7b1f680f1)

Co-authored-by: Yury Selivanov <yury@magic.io>
1 parent 3757939
Raw File
Tip revision: 4b828467a3fcec0c1947e8326f67b8db12a4f303 authored by Miss Islington (bot) on 28 May 2018, 20:44:12 UTC
bpo-32458: Further tune start_tls tests (GH-7166)
Tip revision: 4b82846
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_UnixMain(argc, argv);
}
#endif
back to top