This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: NNTP page has incorrect links
Type: Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, python-dev, roysmith
Priority: normal Keywords:

Created on 2013-10-27 13:18 by roysmith, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg201456 - (view) Author: Roy Smith (roysmith) Date: 2013-10-27 13:18
http://docs.python.org/2/library/nntplib.html contains intra-page references such as:

NNTP.next()
Send a NEXT command. Return as for stat().

The problem is that the link for "stat" points to the stat module (i.e. http://docs.python.org/2/library/stat.html#module-stat).  It should be pointing to the NNTP.stat() entry on this page.

The problem exists for :

NNTP.next()
NNTP.last()
NNTP.head(id)
NNTP.body(id[, file])
NNTP.article(id)

and maybe some others I missed.
msg201609 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-29 07:16
New changeset 6b2352f1d365 by Georg Brandl in branch '2.7':
Closes #19416: fix references in the nntplib docs.
http://hg.python.org/cpython/rev/6b2352f1d365
msg201610 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-29 07:18
New changeset 03fa1b0af343 by Georg Brandl in branch '3.3':
Closes #19416: fix references in the nntplib docs.
http://hg.python.org/cpython/rev/03fa1b0af343
History
Date User Action Args
2022-04-11 14:57:52adminsetgithub: 63615
2013-10-29 07:18:48python-devsetmessages: + msg201610
2013-10-29 07:16:10python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg201609

resolution: fixed
stage: resolved
2013-10-27 13:18:25roysmithcreate