Skip to content

Commit d095d6a

Browse files
committed
Issue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4
2 parents e5b4fee + 76622db commit d095d6a

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
@@ -1267,7 +1267,7 @@ def test_connect_ex_error(self):
12671267
# Issue #19919: Windows machines or VMs hosted on Windows
12681268
# machines sometimes return EWOULDBLOCK.
12691269
errors = (
1270-
errno.ECONNREFUSED, errno.EHOSTUNREACH,
1270+
errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,
12711271
errno.EWOULDBLOCK,
12721272
)
12731273
self.assertIn(rc, errors)

0 commit comments

Comments
 (0)