summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-01-15 02:37:21 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-01-15 02:37:21 (GMT)
commit4edc0e8407cc66d08d431292a5392d77fecd6544 (patch)
tree40101531fcdba73b079202a157f0b61919d5daa3
parent8df98483222d480db087860656d3e369f2338663 (diff)
parenta8b43b5fc35aa3dd96c31cf35cdcc66036c37a6f (diff)
downloadcpython-4edc0e8407cc66d08d431292a5392d77fecd6544.zip
cpython-4edc0e8407cc66d08d431292a5392d77fecd6544.tar.gz
cpython-4edc0e8407cc66d08d431292a5392d77fecd6544.tar.bz2
Issue #25940: Merge ETIMEDOUT fix from 3.5
-rw-r--r--Lib/test/test_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index f95cfba..a480b72 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -1440,7 +1440,7 @@ class NetworkedTests(unittest.TestCase):
# Issue #19919: Windows machines or VMs hosted on Windows
# machines sometimes return EWOULDBLOCK.
errors = (
- errno.ECONNREFUSED, errno.EHOSTUNREACH,
+ errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,
errno.EWOULDBLOCK,
)
self.assertIn(rc, errors)