diff options
author | Victor Stinner <vstinner@python.org> | 2022-02-02 01:47:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 01:47:40 (GMT) |
commit | 0611eafc709cbe8a2a0bdde082d25df0c5034de7 (patch) | |
tree | 8e01590243696b2b8e6908493d22d946bda53c28 /Misc/NEWS.d | |
parent | 53c78080573b3bae4c4e782b9f47dce48aac9688 (diff) | |
download | cpython-0611eafc709cbe8a2a0bdde082d25df0c5034de7.zip cpython-0611eafc709cbe8a2a0bdde082d25df0c5034de7.tar.gz cpython-0611eafc709cbe8a2a0bdde082d25df0c5034de7.tar.bz2 |
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/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2022-02-02-02-24-04.bpo-44359.kPPSmN.rst | 2 |
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 0000000..00c29b1 --- /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. |