diff options
author | Walter Dörwald <walter@livinglogic.de> | 2002-11-06 16:53:44 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2002-11-06 16:53:44 (GMT) |
commit | 4dbf192f2b7d267636244de70faf8c5d78790655 (patch) | |
tree | 0d0eef72d45e1aa982a4c1658828c5db2dad6dd0 /Misc | |
parent | 07e147667cf02cbcb05c84fe03fee31ef61a21c4 (diff) | |
download | cpython-4dbf192f2b7d267636244de70faf8c5d78790655.zip cpython-4dbf192f2b7d267636244de70faf8c5d78790655.tar.gz cpython-4dbf192f2b7d267636244de70faf8c5d78790655.tar.bz2 |
Add next() and __iter__() methods to StreamReader, StreamReaderWriter
and StreamRecoder.
This closes SF bug #634246.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -362,6 +362,9 @@ Extension modules Library ------- +- StreamReader, StreamReaderWriter and StreamRecoder in the codecs + modules are iterators now. + - gzip.py now handles files exceeding 2GB. Files over 4GB also work now (provided the OS supports it, and Python is configured with large file support), but in that case the underlying gzip file format can |