summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2013-10-01 15:38:38 (GMT)
committerBarry Warsaw <barry@python.org>2013-10-01 15:38:38 (GMT)
commitaa914509d36a6def58db03ddc738d62f7c527d96 (patch)
treeada5789ecb39a18bc79ecdb4d4206b0ee11c0dd2 /Lib
parent6e279eeee06d8e8ad252640fe1dfd38439e40d57 (diff)
downloadcpython-aa914509d36a6def58db03ddc738d62f7c527d96.zip
cpython-aa914509d36a6def58db03ddc738d62f7c527d96.tar.gz
cpython-aa914509d36a6def58db03ddc738d62f7c527d96.tar.bz2
Typo caught by : Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/nntplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index f5e0d29..32962b9 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -38,7 +38,7 @@ __all__ = ["NNTP","NNTPReplyError","NNTPTemporaryError",
"error_data",]
# maximal line length when calling readline(). This is to prevent
-# reading arbitrary lenght lines. RFC 3977 limits NNTP line length to
+# reading arbitrary length lines. RFC 3977 limits NNTP line length to
# 512 characters, including CRLF. We have selected 2048 just to be on
# the safe side.
_MAXLINE = 2048