aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-02-02 02:47:40 +0100
committerGitHub <noreply@github.com>2022-02-02 02:47:40 +0100
commit0611eafc709cbe8a2a0bdde082d25df0c5034de7 (patch)
tree8e01590243696b2b8e6908493d22d946bda53c28 /Misc
parent53c78080573b3bae4c4e782b9f47dce48aac9688 (diff)
downloadcpython3-0611eafc709cbe8a2a0bdde082d25df0c5034de7.tar.gz
bpo-44359: Fix test_ftplib unhandled thread exceptions (GH-31069)
test_ftplib now silently ignores socket errors to prevent logging unhandled threading exceptions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2022-02-02-02-24-04.bpo-44359.kPPSmN.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-02-02-02-24-04.bpo-44359.kPPSmN.rst b/Misc/NEWS.d/next/Tests/2022-02-02-02-24-04.bpo-44359.kPPSmN.rst
new file mode 100644
index 0000000000..00c29b1ca4
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2022-02-02-02-24-04.bpo-44359.kPPSmN.rst
@@ -0,0 +1,2 @@
+test_ftplib now silently ignores socket errors to prevent logging unhandled
+threading exceptions. Patch by Victor Stinner.