From 7902f8ddaca62dc21675644e388e78b50d6d7e9c Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 6 Jan 2014 09:50:19 -0800 Subject: [PATCH] news entry for issue19081 fix. --- Misc/NEWS | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index cee61ba5395..a08a95b4371 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -9,6 +9,11 @@ What's New in Python 2.7.7? Core and Builtins ----------------- +- Issue #19081: When a zipimport .zip file in sys.path being imported from + is modified during the lifetime of the Python process after zipimport has + already cached the zip's table of contents we detect this and recover + rather than read bad data from the .zip (causing odd import errors). + - Raise a better error when non-unicode codecs are used for a file's coding cookie.