summaryrefslogtreecommitdiffstats
path: root/Lib/poplib.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-10-19 15:07:05 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-10-19 15:07:05 (GMT)
commit1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0 (patch)
tree141b094c4dc7ce5297eb46e9ce881651abf9a71d /Lib/poplib.py
parent8c06ac5e5817fc7038c92115035107f9ff6c7a64 (diff)
parentf23530f5690d2e37bba7235a6398b2c386a5b485 (diff)
downloadcpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.zip
cpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.tar.gz
cpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.tar.bz2
Issue #22186: Fix typos in Lib/.
Patch by Févry Thibault.
Diffstat (limited to 'Lib/poplib.py')
-rw-r--r--Lib/poplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py
index 23a3517..2b0e3d5 100644
--- a/Lib/poplib.py
+++ b/Lib/poplib.py
@@ -41,7 +41,7 @@ LF = b'\n'
CRLF = CR+LF
# maximal line length when calling readline(). This is to prevent
-# reading arbitrary lenght lines. RFC 1939 limits POP3 line length to
+# reading arbitrary length lines. RFC 1939 limits POP3 line length to
# 512 characters, including CRLF. We have selected 2048 just to be on
# the safe side.
_MAXLINE = 2048