summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-01-08 02:34:23 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-01-08 02:34:23 (GMT)
commit2e385e2592c140897a106a6a95184b23c5611a7f (patch)
treec6fdb5c7d9feb7d6c87eeec814e248d013f4e9a1 /Misc
parent6188bd498fd22582e44f323895f0f89dec50f0b8 (diff)
parent2bcbc141173e5cd2ed36693a71bed8d5a1a54dd4 (diff)
downloadcpython-2e385e2592c140897a106a6a95184b23c5611a7f.zip
cpython-2e385e2592c140897a106a6a95184b23c5611a7f.tar.gz
cpython-2e385e2592c140897a106a6a95184b23c5611a7f.tar.bz2
Fixes 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).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fa6d0d5..778e7df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ Release date: 2014-01-19
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).
+
Library
-------