diff options
-rw-r--r-- | Lib/test/support/__init__.py | 3 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 7ef6980..77e2d76 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1328,7 +1328,8 @@ def transient_internet(resource_name, *, timeout=30.0, errnos=()): (isinstance(err, urllib.error.HTTPError) and 500 <= err.code <= 599) or (isinstance(err, urllib.error.URLError) and - "ConnectionRefusedError" in err.reason) or + (("ConnectionRefusedError" in err.reason) or + ("TimeoutError" in err.reason))) or n in captured_errnos): if not verbose: sys.stderr.write(denied.args[0] + "\n") @@ -104,6 +104,11 @@ Build - Issue #23585: make patchcheck will ensure the interpreter is built. +Tests +----- + +- Issue #22289: Prevent test_urllib2net failures due to ftp connection timeout. + Tools/Demos ----------- |