summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-27 20:59:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-27 20:59:50 (GMT)
commit94c33ebfa819873c0e265bf659bbdd2cbe2d6cd7 (patch)
tree5b331e207dff8b20b13f01a2fe6c276b82e2e13f /Misc
parent7b4e02c8629c44fe459716e9674d9185669b3b42 (diff)
downloadcpython-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/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e560204..6cf0050 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.