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: :meth:`quit` links to constants instead of own module
Type: behavior Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: danken, docs@python, jcea, python-dev
Priority: normal Keywords: patch

Created on 2012-12-26 15:01 by danken, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
meth:quit.patch danken, 2012-12-26 15:01 spell out the reference to a module-specific "quit" function review
Messages (4)
msg178222 - (view) Author: Dan Kenigsberg (danken) Date: 2012-12-26 15:01
ftplib, poplib and smtplib modules define a "quit" function. But when it is refered by :meth:`quit` in the documentation, a reference to constants.quit is generated.

The suggested patch spells out the module-specific "quit" function.
msg178227 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012-12-26 15:43
I take care of this.
msg178229 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-26 15:49
New changeset 0ffaf1079a7a by Jesus Cea in branch '2.7':
Closes #16789: :meth:`quit` links to constants instead of own module
http://hg.python.org/cpython/rev/0ffaf1079a7a

New changeset 3801ee5d5d73 by Jesus Cea in branch '3.2':
Closes #16789: :meth:`quit` links to constants instead of own module
http://hg.python.org/cpython/rev/3801ee5d5d73

New changeset b6a9f8fd9443 by Jesus Cea in branch '3.3':
MERGE: Closes #16789: :meth:`quit` links to constants instead of own module
http://hg.python.org/cpython/rev/b6a9f8fd9443

New changeset 3f7d5c235d82 by Jesus Cea in branch 'default':
MERGE: Closes #16789: :meth:`quit` links to constants instead of own module
http://hg.python.org/cpython/rev/3f7d5c235d82
msg178231 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012-12-26 15:53
Thanks!.
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60993
2012-12-26 15:53:57jceasetmessages: + msg178231
2012-12-26 15:49:23python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg178229

resolution: fixed
stage: resolved
2012-12-26 15:43:08jceasetassignee: docs@python -> jcea

messages: + msg178227
nosy: + jcea
2012-12-26 15:01:05dankencreate