diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-03-27 08:15:44 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-03-27 08:15:44 (GMT) |
commit | 40108c97fb490318e7fb30353c3475ada7de98f9 (patch) | |
tree | 3e6092c7d7555b9a6bff586b80d0baf5a9f270a8 /Misc | |
parent | 17d25ca76dfb0a7d82fb78468960460cc6ce1259 (diff) | |
download | cpython-40108c97fb490318e7fb30353c3475ada7de98f9.zip cpython-40108c97fb490318e7fb30353c3475ada7de98f9.tar.gz cpython-40108c97fb490318e7fb30353c3475ada7de98f9.tar.bz2 |
Mention patch id for the CJK part of the patch and
the name of the two new C functions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -499,11 +499,12 @@ Library deprecated Message methods have been removed and lots of bugs have been fixed. More details can be found in the email package documentation. -- Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass - of tuple) that provides incremental decoders and encoders (a way to use - stateful codecs without the stream API). Functions - codecs.getincrementaldecoder() and codecs.getincrementalencoder() have - been added. +- Patches #1436130/#1443155: codecs.lookup() now returns a CodecInfo object + (a subclass of tuple) that provides incremental decoders and encoders + (a way to use stateful codecs without the stream API). Python functions + codecs.getincrementaldecoder() and codecs.getincrementalencoder() as well + as C functions PyCodec_IncrementalEncoder() and PyCodec_IncrementalDecoder() + have been added. - Patch #1359365: Calling next() on a closed StringIO.String object raises a ValueError instead of a StopIteration now (like file and cString.String do). |