diff options
author | Georg Brandl <georg@python.org> | 2005-07-17 20:27:41 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-07-17 20:27:41 +0000 |
commit | 5dbda75a0208d1e1acd1d3bf26c4c44df0897dae (patch) | |
tree | 63656e49597a3c5886bc560cbe607a79d38897a9 /Lib | |
parent | 0e03272350ff5b1401db38c742912f00d5fe97a5 (diff) | |
download | cpython-git-5dbda75a0208d1e1acd1d3bf26c4c44df0897dae.tar.gz |
- Bug #1015140: disambiguated the term "article id" in nntplib docs and
docstrings to either "article number" or "message id".
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/nntplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index 8709fffc64..cc51d1da82 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -281,7 +281,7 @@ class NNTP: - time: string 'hhmmss' indicating the time Return: - resp: server response if successful - - list: list of article ids""" + - list: list of message ids""" cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time return self.longcmd(cmd, file) @@ -391,7 +391,7 @@ class NNTP: Returns: - resp: server response if successful - nr: the article number - - id: the article id""" + - id: the message id""" return self.statcmd('STAT ' + id) |