summaryrefslogtreecommitdiffstats
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-03-17 15:40:35 (GMT)
committerFred Drake <fdrake@acm.org>2000-03-17 15:40:35 (GMT)
commit3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2 (patch)
tree151228fdbf1097de298b1ab1773f24c6ac9ed1be /Lib/codecs.py
parent36cc6a21973c38376c6a6fb646ca53e079950586 (diff)
downloadcpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.zip
cpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.tar.gz
cpython-3e74c0d0212c7dd1dd0d0632d80ea98395ec7ce2.tar.bz2
"intput" --> "input" (in docstring); noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py2
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