Skip to content

Commit 76622db

Browse files
committed
Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3
2 parents e6f3d78 + dd6958f commit 76622db

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)