diff options
author | Georg Brandl <georg@python.org> | 2013-10-29 07:17:08 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-29 07:17:08 (GMT) |
commit | 3a19a89eacdb10407c6d1dc59887d11faea7aa3e (patch) | |
tree | b5c6316323c377fe9f5799d58463cb86be21b6a3 /Doc/library/nntplib.rst | |
parent | dd371b92c43a98d0df31cd36ed19cf0bb2f94143 (diff) | |
parent | 3d596fa90b3c862eb2c0fb67aaf42cf1237c3258 (diff) | |
download | cpython-3a19a89eacdb10407c6d1dc59887d11faea7aa3e.zip cpython-3a19a89eacdb10407c6d1dc59887d11faea7aa3e.tar.gz cpython-3a19a89eacdb10407c6d1dc59887d11faea7aa3e.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/library/nntplib.rst')
-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 73b51c0..9ab2c94 100644 --- a/Doc/library/nntplib.rst +++ b/Doc/library/nntplib.rst @@ -394,18 +394,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 |