cpython: c5cae7366835 (original) (raw)
Mercurial > cpython
changeset 99898:c5cae7366835 3.3
Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3 [#25940]
Martin Panter vadmium+py@gmail.com | |
---|---|
date | Fri, 15 Jan 2016 02:08:13 +0000 |
parents | e167a9296947(current diff)b2036b717028(diff) |
children | a806ed21bd82 b9c8f1c80f47 |
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 @@ -856,7 +856,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)