[Python-checkins] cpython (3.3): Closes #19416: fix references in the nntplib docs.

georg.brandl python-checkins at python.org
Tue Oct 29 08:18:51 CET 2013


http://hg.python.org/cpython/rev/03fa1b0af343
changeset:   86729:03fa1b0af343
branch:      3.3
user:        Georg Brandl <georg at python.org>
date:        Tue Oct 29 08:14:51 2013 +0100
summary:
  Closes #19416: fix references in the nntplib docs.

files:
  Doc/library/nntplib.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst
--- a/Doc/library/nntplib.rst
+++ b/Doc/library/nntplib.rst
@@ -395,18 +395,18 @@
 
 .. 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list