summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2018-02-24 23:45:24 (GMT)
committerGitHub <noreply@github.com>2018-02-24 23:45:24 (GMT)
commitaab225840360719516eca55a7a69cfee45aee2af (patch)
tree3ddac4750f35272d110d4d5174e8e27c96ad93ab /Misc
parent980790eee0c804061a49b8ad7373e4669b48f2ec (diff)
downloadcpython-aab225840360719516eca55a7a69cfee45aee2af.zip
cpython-aab225840360719516eca55a7a69cfee45aee2af.tar.gz
cpython-aab225840360719516eca55a7a69cfee45aee2af.tar.bz2
bpo-31518: Change TLS protocol for Debian (#3660)
Debian Unstable has disabled TLS 1.0 and 1.1 for SSLv23_METHOD(). Change TLS/SSL protocol of some tests to PROTOCOL_TLS or PROTOCOL_TLSv1_2 to make them pass on Debian. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2017-09-19-20-48-50.bpo-31518.KwTMMz.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2017-09-19-20-48-50.bpo-31518.KwTMMz.rst b/Misc/NEWS.d/next/Tests/2017-09-19-20-48-50.bpo-31518.KwTMMz.rst
new file mode 100644
index 0000000..7378df0
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2017-09-19-20-48-50.bpo-31518.KwTMMz.rst
@@ -0,0 +1,3 @@
+Debian Unstable has disabled TLS 1.0 and 1.1 for SSLv23_METHOD(). Change
+TLS/SSL protocol of some tests to PROTOCOL_TLS or PROTOCOL_TLSv1_2 to make
+them pass on Debian.