summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2019-09-12 14:13:44 (GMT)
committerGregory P. Smith <greg@krypto.org>2019-09-12 14:13:44 (GMT)
commit2f1b857562b0f1601c9019db74c29b7d7e21ac9f (patch)
tree09ba434a35ab308f400440d36aa5a1051d3785bb /Misc/NEWS.d/next/Library
parent99b54d68172ad64ba3d0fdc0137f0df88c28ea2b (diff)
downloadcpython-2f1b857562b0f1601c9019db74c29b7d7e21ac9f.zip
cpython-2f1b857562b0f1601c9019db74c29b7d7e21ac9f.tar.gz
cpython-2f1b857562b0f1601c9019db74c29b7d7e21ac9f.tar.bz2
bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632)
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-12-14-52-38.bpo-36991.1OcSm8.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-12-14-52-38.bpo-36991.1OcSm8.rst b/Misc/NEWS.d/next/Library/2019-09-12-14-52-38.bpo-36991.1OcSm8.rst
new file mode 100644
index 0000000..c6fa852
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-12-14-52-38.bpo-36991.1OcSm8.rst
@@ -0,0 +1,2 @@
+Fixes a potential incorrect AttributeError exception escaping
+ZipFile.extract() in some unsupported input error situations.