]> granicus.if.org Git - python/commitdiff
Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode...
authorBerker Peksag <berker.peksag@gmail.com>
Thu, 30 Jul 2015 15:26:10 +0000 (18:26 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 30 Jul 2015 15:26:10 +0000 (18:26 +0300)
It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode().

Patch by Nick Weinhold.

Doc/library/codecs.rst
Lib/codecs.py

index 19d71921d22c6817219a07b8a1ee3774e51c3f2f..9496035cd7f14565f124042e1fbf73204cfe8103 100644 (file)
@@ -436,8 +436,8 @@ function interfaces of the stateless encoder and decoder:
    It defaults to ``'strict'`` handling.
 
    The method may not store state in the :class:`Codec` instance. Use
-   :class:`StreamCodec` for codecs which have to keep state in order to make
-   encoding/decoding efficient.
+   :class:`StreamWriter` for codecs which have to keep state in order to make
+   encoding efficient.
 
    The encoder must be able to handle zero length input and return an empty object
    of the output object type in this situation.
@@ -458,8 +458,8 @@ function interfaces of the stateless encoder and decoder:
    It defaults to ``'strict'`` handling.
 
    The method may not store state in the :class:`Codec` instance. Use
-   :class:`StreamCodec` for codecs which have to keep state in order to make
-   encoding/decoding efficient.
+   :class:`StreamReader` for codecs which have to keep state in order to make
+   decoding efficient.
 
    The decoder must be able to handle zero length input and return an empty object
    of the output object type in this situation.
index 66dd024cd90c41f3bc856d559f9fc0d1299a37c1..4a4d043272096328b779ac2d5e12a0e232553d58 100644 (file)
@@ -141,8 +141,8 @@ class Codec:
             'strict' handling.
 
             The method may not store state in the Codec instance. Use
-            StreamCodec for codecs which have to keep state in order to
-            make encoding/decoding efficient.
+            StreamWriter for codecs which have to keep state in order to
+            make encoding efficient.
 
             The encoder must be able to handle zero length input and
             return an empty object of the output object type in this
@@ -164,8 +164,8 @@ class Codec:
             'strict' handling.
 
             The method may not store state in the Codec instance. Use
-            StreamCodec for codecs which have to keep state in order to
-            make encoding/decoding efficient.
+            StreamReader for codecs which have to keep state in order to
+            make decoding efficient.
 
             The decoder must be able to handle zero length input and
             return an empty object of the output object type in this