[Python-checkins] r43337 - python/trunk/Misc/NEWS

walter.doerwald python-checkins at python.org
Mon Mar 27 10:15:45 CEST 2006


Author: walter.doerwald
Date: Mon Mar 27 10:15:44 2006
New Revision: 43337

Modified:
   python/trunk/Misc/NEWS
Log:
Mention patch id for the CJK part of the patch and
the name of the two new C functions.


Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Mon Mar 27 10:15:44 2006
@@ -499,11 +499,12 @@
   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).


More information about the Python-checkins mailing list