summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2011-10-28 21:02:27 (GMT)
committerBarry Warsaw <barry@python.org>2011-10-28 21:02:27 (GMT)
commit5a8f03f6634bd52fff2413335e84877acef6a135 (patch)
tree42cb7faee60dfbfce5dd90750350fca14996e3a2
parent305bb662a9bcf1446b8a6bc19bf6ec8fc70c13e8 (diff)
parent46ae0efce1128b4d5793981c133c21a5176401e1 (diff)
downloadcpython-5a8f03f6634bd52fff2413335e84877acef6a135.zip
cpython-5a8f03f6634bd52fff2413335e84877acef6a135.tar.gz
cpython-5a8f03f6634bd52fff2413335e84877acef6a135.tar.bz2
- Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
-rw-r--r--Lib/test/test_ssl.py6
-rw-r--r--Misc/NEWS2
2 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index a79fce6..f942d95 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -1315,7 +1315,8 @@ else:
try_protocol_combo(ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_SSLv3, True, ssl.CERT_REQUIRED)
if hasattr(ssl, 'PROTOCOL_SSLv2'):
try_protocol_combo(ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_SSLv2, False)
- try_protocol_combo(ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_SSLv23, False)
+ try_protocol_combo(ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_SSLv23, False,
+ client_options=ssl.OP_NO_SSLv3)
try_protocol_combo(ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_TLSv1, False)
if no_sslv2_implies_sslv3_hello():
# No SSLv2 => client will use an SSLv3 hello on recent OpenSSLs
@@ -1333,7 +1334,8 @@ else:
if hasattr(ssl, 'PROTOCOL_SSLv2'):
try_protocol_combo(ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv2, False)
try_protocol_combo(ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv3, False)
- try_protocol_combo(ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23, False)
+ try_protocol_combo(ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23, False,
+ client_options=ssl.OP_NO_TLSv1)
def test_starttls(self):
"""Switching from clear text to encrypted and back again."""
diff --git a/Misc/NEWS b/Misc/NEWS
index b3c7fd1..527874d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -171,6 +171,8 @@ Library
Tests
-----
+- Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
+
- Issue #12821: Fix test_fcntl failures on OpenBSD 5.
- Re-enable lib2to3's test_parser.py tests, though with an expected failure