summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@python.org>2022-10-10 06:36:51 (GMT)
committerGitHub <noreply@github.com>2022-10-10 06:36:51 (GMT)
commit1ae7abf6b2f410feee02286a1b2179f2c6e88abd (patch)
tree1c2f22276e8ea10d72977d811353cdfa68525f28 /Misc
parentac0a19b62ae137c2c9f53fbba8ba3f769acf34dc (diff)
downloadcpython-1ae7abf6b2f410feee02286a1b2179f2c6e88abd.zip
cpython-1ae7abf6b2f410feee02286a1b2179f2c6e88abd.tar.gz
cpython-1ae7abf6b2f410feee02286a1b2179f2c6e88abd.tar.bz2
[3.10] bpo-43564: preserve original exception in args of FTP URLError (GH-24938) (#98138)
* bpo-43564: preserve original error in args of FTP URLError * Add NEWS blurb Co-authored-by: Carl Meyer <carljm@instagram.com>. (cherry picked from commit ad817cd5c44416da3752ebf9baf16d650703275c) Co-authored-by: Carl Meyer <carl@oddbird.net> Co-authored-by: Carl Meyer <carl@oddbird.net>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-10-09-12-12-38.gh-issue-87730.ClgP3f.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-10-09-12-12-38.gh-issue-87730.ClgP3f.rst b/Misc/NEWS.d/next/Library/2022-10-09-12-12-38.gh-issue-87730.ClgP3f.rst
new file mode 100644
index 0000000..6c63fa4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-10-09-12-12-38.gh-issue-87730.ClgP3f.rst
@@ -0,0 +1,3 @@
+Wrap network errors consistently in urllib FTP support, so the test suite
+doesn't fail when a network is available but the public internet is not
+reachable.