diff options
author | Georg Brandl <georg@python.org> | 2013-10-29 07:14:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-29 07:14:51 (GMT) |
commit | 21527bf72f861435c9b97e8dc3d8945771146fc9 (patch) | |
tree | 0bc0bb8e0d53ab5a781b718e9ff6be9f5e033990 /Doc | |
parent | 1ed80b09ed3f808980b827aac85497ee0fd3d3c8 (diff) | |
download | cpython-21527bf72f861435c9b97e8dc3d8945771146fc9.zip cpython-21527bf72f861435c9b97e8dc3d8945771146fc9.tar.gz cpython-21527bf72f861435c9b97e8dc3d8945771146fc9.tar.bz2 |
Closes #19416: fix references in the nntplib docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/nntplib.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst index 1d1aa40..759d3b7 100644 --- a/Doc/library/nntplib.rst +++ b/Doc/library/nntplib.rst @@ -395,18 +395,18 @@ tuples or objects that the method normally returns will be empty. .. method:: NNTP.next() - Send a ``NEXT`` command. Return as for :meth:`stat`. + Send a ``NEXT`` command. Return as for :meth:`.stat`. .. method:: NNTP.last() - Send a ``LAST`` command. Return as for :meth:`stat`. + Send a ``LAST`` command. Return as for :meth:`.stat`. .. method:: NNTP.article(message_spec=None, *, file=None) Send an ``ARTICLE`` command, where *message_spec* has the same meaning as - for :meth:`stat`. Return a tuple ``(response, info)`` where *info* + for :meth:`.stat`. Return a tuple ``(response, info)`` where *info* is a :class:`~collections.namedtuple` with three attributes *number*, *message_id* and *lines* (in that order). *number* is the article number in the group (or 0 if the information is not available), *message_id* the |