diff options
author | Gregory P. Smith <greg@krypto.org> | 2014-01-08 02:34:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2014-01-08 02:34:23 (GMT) |
commit | 2e385e2592c140897a106a6a95184b23c5611a7f (patch) | |
tree | c6fdb5c7d9feb7d6c87eeec814e248d013f4e9a1 /Misc | |
parent | 6188bd498fd22582e44f323895f0f89dec50f0b8 (diff) | |
parent | 2bcbc141173e5cd2ed36693a71bed8d5a1a54dd4 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 ------- |