diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-12 15:30:13 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-12 15:30:13 (GMT) |
commit | 5f2a7bce2ed3dce23b9e167e17746ba3dbab9d58 (patch) | |
tree | 66e3b9a98c8c52f94af8a0fd3d66ff3d26ccdd32 /Misc | |
parent | 595c8d34a340fa2f381d9b0e4b6a09e2accc6898 (diff) | |
download | cpython-5f2a7bce2ed3dce23b9e167e17746ba3dbab9d58.zip cpython-5f2a7bce2ed3dce23b9e167e17746ba3dbab9d58.tar.gz cpython-5f2a7bce2ed3dce23b9e167e17746ba3dbab9d58.tar.bz2 |
Merged revisions 83959-83960 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83959 | antoine.pitrou | 2010-08-12 17:11:50 +0200 (jeu., 12 août 2010) | 5 lines
Issue #7467: when a file from a ZIP archive, its CRC is checked and a
BadZipfile error is raised if it doesn't match (as used to be the
case in Python 2.5 and earlier).
........
r83960 | antoine.pitrou | 2010-08-12 17:15:01 +0200 (jeu., 12 août 2010) | 3 lines
Typo.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -93,6 +93,10 @@ C-API Library ------- +- Issue #7467: when reading a file from a ZIP archive, its CRC is checked + and a BadZipfile error is raised if it doesn't match (as used to be the + case in Python 2.5 and earlier). + - Issue #9550: a BufferedReader could issue an additional read when the original read request had been satisfied, which could block indefinitely when the underlying raw IO channel was e.g. a socket. Report and original |