diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-07-30 15:27:04 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-07-30 15:27:04 (GMT) |
commit | 4de1c1a9df10ca38608b5283374fce21b7bf0c8a (patch) | |
tree | e69fe9c12c6eba9168616aa913a8d536e8f40f0e /Lib | |
parent | 317ccf3cd41ccb9b36b0a303529e07d7407ced78 (diff) | |
parent | 7e94e8ea4bb14e25eecd76c9d34e97cb417f1718 (diff) | |
download | cpython-4de1c1a9df10ca38608b5283374fce21b7bf0c8a.zip cpython-4de1c1a9df10ca38608b5283374fce21b7bf0c8a.tar.gz cpython-4de1c1a9df10ca38608b5283374fce21b7bf0c8a.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/codecs.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 31e73bd..22d5f82 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -143,8 +143,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 @@ -166,8 +166,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 |