From: Martin Panter Date: Thu, 14 Jan 2016 13:25:06 +0000 (+0000) Subject: Issue #25940: Merge self-signed.pythontest.net testing from 3.5 X-Git-Tag: v3.6.0a1~780 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3570e02fd284a29fa1021395b1249ffddf781868;p=python Issue #25940: Merge self-signed.pythontest.net testing from 3.5 --- 3570e02fd284a29fa1021395b1249ffddf781868 diff --cc Lib/test/test_ssl.py index d1a908826d,f95cfbacd2..b3aee62c7e --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@@ -1712,11 -1711,10 +1712,11 @@@ class NetworkedBIOTests(unittest.TestCa % (count, func.__name__)) return ret + @unittest.skipIf(True, "temporarily disabled: see #25940") def test_handshake(self): - with support.transient_internet("svn.python.org"): + with support.transient_internet(REMOTE_HOST): sock = socket.socket(socket.AF_INET) - sock.connect(("svn.python.org", 443)) + sock.connect((REMOTE_HOST, 443)) incoming = ssl.MemoryBIO() outgoing = ssl.MemoryBIO() ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23)