Commit 76622db6 authored by Martin Panter's avatar Martin Panter

Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3

parents e6f3d78d dd6958f8
...@@ -856,7 +856,7 @@ class NetworkedTests(unittest.TestCase): ...@@ -856,7 +856,7 @@ class NetworkedTests(unittest.TestCase):
# Issue #19919: Windows machines or VMs hosted on Windows # Issue #19919: Windows machines or VMs hosted on Windows
# machines sometimes return EWOULDBLOCK. # machines sometimes return EWOULDBLOCK.
errors = ( errors = (
errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,
errno.EWOULDBLOCK, errno.EWOULDBLOCK,
) )
self.assertIn(rc, errors) self.assertIn(rc, errors)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment