Staging
v0.5.1
https://github.com/python/cpython
Revision 34de2d312b3687994ddbc29adb66e88f672034c7 authored by Christian Heimes on 18 January 2019, 15:09:30 UTC, committed by Victor Stinner on 18 January 2019, 15:09:30 UTC
Make ssl tests less strict and also accept TLSv1 as system default. The
changes unbreaks test_min_max_version on Fedora 29.

Signed-off-by: Christian Heimes <christian@python.org>
1 parent 36d9e9a
Raw File
Tip revision: 34de2d312b3687994ddbc29adb66e88f672034c7 authored by Christian Heimes on 18 January 2019, 15:09:30 UTC
bpo-35045: Accept TLSv1 default in min max test (GH-11510)
Tip revision: 34de2d3
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_UnixMain(argc, argv);
}
#endif
back to top