diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-12 14:51:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-12 14:51:20 (GMT) |
commit | 6464d5ffdc6ee54f023c6230f1633debf183815f (patch) | |
tree | 3efb844f24e15fcd80151ac2d8e9a56e5ed92f9a /Misc | |
parent | 0b9489d21daec1f5f45a95194423724836192edd (diff) | |
download | cpython-6464d5ffdc6ee54f023c6230f1633debf183815f.zip cpython-6464d5ffdc6ee54f023c6230f1633debf183815f.tar.gz cpython-6464d5ffdc6ee54f023c6230f1633debf183815f.tar.bz2 |
Issue #9837: The read() method of ZipExtFile objects (as returned by
ZipFile.open()) could return more bytes than requested.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -32,6 +32,9 @@ Core and Builtins Library ------- +- Issue #9837: The read() method of ZipExtFile objects (as returned by + ZipFile.open()) could return more bytes than requested. + - Issue #9826: OrderedDict.__repr__ can now handle self-referential values: d['x'] = d. |