Skip to content

Commit fab75d9

Browse files
committed
Issue python#25940: Merge ETIMEDOUT fix from 3.2 into 3.3
2 parents 73f5507 + 035583b commit fab75d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ def test_connect_ex_error(self):
856856
# Issue #19919: Windows machines or VMs hosted on Windows
857857
# machines sometimes return EWOULDBLOCK.
858858
errors = (
859-
errno.ECONNREFUSED, errno.EHOSTUNREACH,
859+
errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,
860860
errno.EWOULDBLOCK,
861861
)
862862
self.assertIn(rc, errors)

0 commit comments

Comments
 (0)