diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-12 15:11:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-12 15:11:50 (GMT) |
commit | 7c8bcb6f923c860986477660f634ea63f103ebaa (patch) | |
tree | ee42c1ab3544d27526c521851befcac995f1d421 /Misc | |
parent | d4efbf90d24405f89df07f6e575e3572a0516e85 (diff) | |
download | cpython-7c8bcb6f923c860986477660f634ea63f103ebaa.zip cpython-7c8bcb6f923c860986477660f634ea63f103ebaa.tar.gz cpython-7c8bcb6f923c860986477660f634ea63f103ebaa.tar.bz2 |
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).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -72,6 +72,10 @@ Extensions Library ------- +- 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). + - 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 |