summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-02-19 16:05:28 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-02-19 16:05:28 (GMT)
commit39440b14cd4481e138bce568d81663315f1f7cc4 (patch)
tree6e747519cd196c0e635676d4bd1daad2bca9c163 /Misc
parent9603428755a644c01ebfd356e2f90864291a26a8 (diff)
downloadcpython-39440b14cd4481e138bce568d81663315f1f7cc4.zip
cpython-39440b14cd4481e138bce568d81663315f1f7cc4.tar.gz
cpython-39440b14cd4481e138bce568d81663315f1f7cc4.tar.bz2
Merged revisions 78242 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78242 | brett.cannon | 2010-02-19 11:01:06 -0500 (Fri, 19 Feb 2010) | 5 lines Importlib was not matching import's handling of .pyc files where it had less then 8 bytes total in the file. Fixes issues 7361 & 7875. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d9e91fb..76ae737 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,8 @@ Core and Builtins
Library
-------
+- Issue #7361: Importlib was not handling bytecode files less than 8 bytes in
+ length properly.
- Issue #7835: shelve should no longer produce mysterious warnings during
interpreter shutdown.