diff options
author | Fred Drake <fdrake@acm.org> | 2000-03-17 15:40:35 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-03-17 15:40:35 (GMT) |
commit | 3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2 (patch) | |
tree | 151228fdbf1097de298b1ab1773f24c6ac9ed1be | |
parent | 36cc6a21973c38376c6a6fb646ca53e079950586 (diff) | |
download | cpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.zip cpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.tar.gz cpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.tar.bz2 |
"intput" --> "input" (in docstring); noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 999f3a9..b8b32d5 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -55,7 +55,7 @@ class Codec: """ def encode(self,input,errors='strict'): - """ Encodes the object intput and returns a tuple (output + """ Encodes the object input and returns a tuple (output object, length consumed). errors defines the error handling to apply. It defaults to |