diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-27 20:59:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-27 20:59:50 (GMT) |
commit | 94c33ebfa819873c0e265bf659bbdd2cbe2d6cd7 (patch) | |
tree | 5b331e207dff8b20b13f01a2fe6c276b82e2e13f /Misc | |
parent | 7b4e02c8629c44fe459716e9674d9185669b3b42 (diff) | |
download | cpython-94c33ebfa819873c0e265bf659bbdd2cbe2d6cd7.zip cpython-94c33ebfa819873c0e265bf659bbdd2cbe2d6cd7.tar.gz cpython-94c33ebfa819873c0e265bf659bbdd2cbe2d6cd7.tar.bz2 |
Issue #7610: Reworked implementation of the internal
:class:`zipfile.ZipExtFile` class used to represent files stored inside
an archive. The new implementation is significantly faster and can
be wrapped in a :class:`io.BufferedReader` object for more speedups.
It also solves an issue where interleaved calls to `read()` and
`readline()` give wrong results. Patch by Nir Aides.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -47,6 +47,13 @@ Core and Builtins Library ------- +- Issue #7610: Reworked implementation of the internal + :class:`zipfile.ZipExtFile` class used to represent files stored inside + an archive. The new implementation is significantly faster and can + be wrapped in a :class:`io.BufferedReader` object for more speedups. + It also solves an issue where interleaved calls to `read()` and + `readline()` give wrong results. Patch by Nir Aides. + - Issue #7792: Registering non-classes to ABCs raised an obscure error. - Removed the functions 'verify' and 'vereq' from Lib/test/test_support.py. |