Staging
v0.5.1
https://github.com/python/cpython
Revision 47eb2234061524562a4b484e3a395f4fdd6c1b76 authored by Christian Heimes on 03 June 2019, 18:51:27 UTC, committed by Miss Islington (bot) on 03 June 2019, 18:51:27 UTC


What's new now mentions SSLContext.hostname_checks_common_name instead of SSLContext.host_flags.


https://bugs.python.org/issue36868
1 parent e35d1ba
Raw File
Tip revision: 47eb2234061524562a4b484e3a395f4fdd6c1b76 authored by Christian Heimes on 03 June 2019, 18:51:27 UTC
bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248)
Tip revision: 47eb223
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