summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-13 16:29:04 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-13 16:29:04 (GMT)
commit060cee221b7d24479da93d925607defb2b6e3dd9 (patch)
tree406edb569f120be79a1f057268c511ad2311841e /Misc
parent88d1bc448bdc2bab0531a729893532cdf2307b28 (diff)
downloadcpython-060cee221b7d24479da93d925607defb2b6e3dd9.zip
cpython-060cee221b7d24479da93d925607defb2b6e3dd9.tar.gz
cpython-060cee221b7d24479da93d925607defb2b6e3dd9.tar.bz2
Issue #6551: test_zipimport could import and then destroy some modules of
the encodings package, which would make other tests fail further down the road because the internally cached encoders and decoders would point to empty global variables.
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 2d30d50..a7b570c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -373,6 +373,11 @@ Documentation
Tests
-----
+- Issue #6551: test_zipimport could import and then destroy some modules of
+ the encodings package, which would make other tests fail further down
+ the road because the internally cached encoders and decoders would point
+ to empty global variables.
+
- Issue #7295: Do not use a hardcoded file name in test_tarfile.
- Issue #7270: Add some dedicated unit tests for multi-thread synchronization