cpython: 32a4e7b337c9 (original) (raw)
Mercurial > cpython
changeset 99901:32a4e7b337c9
Issue #25940: Merge ETIMEDOUT fix from 3.5 [#25940]
Martin Panter vadmium+py@gmail.com | |
---|---|
date | Fri, 15 Jan 2016 02:37:21 +0000 |
parents | ac94418299bd(current diff)bd9d5bc8bc95(diff) |
children | 8ad701463cd7 |
files | Lib/test/test_ssl.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_ssl.py 2 |
line wrap: on
line diff
--- 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,[](#l1.7)
errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,[](#l1.8) errno.EWOULDBLOCK,[](#l1.9) )[](#l1.10) self.assertIn(rc, errors)[](#l1.11)