summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-10-29 00:43:44 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-10-29 00:43:44 (GMT)
commit73660af6afdd8309c85d5e513e319b7f0a5b006e (patch)
tree9a0e56bb8acdf8de501fd6230cc6e618058adf8b /Misc
parenta5afb58986cc0cd63908f1b5b44d472611f67b4f (diff)
downloadcpython-73660af6afdd8309c85d5e513e319b7f0a5b006e.zip
cpython-73660af6afdd8309c85d5e513e319b7f0a5b006e.tar.gz
cpython-73660af6afdd8309c85d5e513e319b7f0a5b006e.tar.bz2
Issue #19428: zipimport now handles errors when reading truncated or invalid
ZIP archive.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 28ab604..5e6a17b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Projected release date: 2013-11-24
Core and Builtins
-----------------
+- Issue #19428: zipimport now handles errors when reading truncated or invalid
+ ZIP archive.
+
- Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
exceptions when merging fast locals into f_locals of a frame.
PyEval_GetLocals() now raises an exception and return NULL on failure.