From 41ca828580aa441baa334625a60f3975d14023eb Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 30 Jul 2015 18:26:10 +0300 Subject: Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs. It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode(). Patch by Nick Weinhold. --- Lib/codecs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Lib/codecs.py') diff --git a/Lib/codecs.py b/Lib/codecs.py index 66dd024cd90..4a4d0432720 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -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 -- cgit v1.2.3