]> granicus.if.org Git - python/commitdiff
Mention patch id for the CJK part of the patch and
authorWalter Dörwald <walter@livinglogic.de>
Mon, 27 Mar 2006 08:15:44 +0000 (08:15 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Mon, 27 Mar 2006 08:15:44 +0000 (08:15 +0000)
the name of the two new C functions.

Misc/NEWS

index ae0e971b15cb93c2dbb59ebaf2e5d870c5107db7..42b6e401d65ecd6ad65bedc17582e8a960d07b4c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).