Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a8b43b5

Browse files
committed
Issue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5
2 parents 40b97ec + 3f2240c commit a8b43b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@ def test_connect_ex_error(self):
14401440
# Issue #19919: Windows machines or VMs hosted on Windows
14411441
# machines sometimes return EWOULDBLOCK.
14421442
errors = (
1443-
errno.ECONNREFUSED, errno.EHOSTUNREACH,
1443+
errno.ECONNREFUSED, errno.EHOSTUNREACH, errno.ETIMEDOUT,
14441444
errno.EWOULDBLOCK,
14451445
)
14461446
self.assertIn(rc, errors)

0 commit comments

Comments
 (0)