diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-10-29 00:43:44 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-10-29 00:43:44 (GMT) |
commit | 73660af6afdd8309c85d5e513e319b7f0a5b006e (patch) | |
tree | 9a0e56bb8acdf8de501fd6230cc6e618058adf8b /Misc | |
parent | a5afb58986cc0cd63908f1b5b44d472611f67b4f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |