diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-07-09 17:15:28 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-07-09 17:15:28 (GMT) |
commit | 740c730086a82f95361f705e7445fe3767d137e3 (patch) | |
tree | 233c4f284e819dcab45a69ee62d6dc18884810fe /Lib | |
parent | bfff45d611f3435ed4b713124f65fba8e961ff03 (diff) | |
download | cpython-740c730086a82f95361f705e7445fe3767d137e3.zip cpython-740c730086a82f95361f705e7445fe3767d137e3.tar.gz cpython-740c730086a82f95361f705e7445fe3767d137e3.tar.bz2 |
Issues #21948 and #16040: Fix typos.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/nntplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index e2c6579..4ded78a 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -86,7 +86,7 @@ __all__ = ["NNTP", ] # 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 |