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: Enum docs: sections leak out
Type: Stage: resolved
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, elazar, eli.bendersky, ethan.furman, python-dev
Priority: normal Keywords: patch

Created on 2013-09-02 22:40 by elazar, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
enumcontain.patch elazar, 2013-09-02 22:40 review
enumindent.patch elazar, 2013-09-02 22:53 An augmented patch: indentation to 4 spaces, and adding ellipsys after class definition. review
enumplusminor.patch elazar, 2013-09-02 23:53 Adding some unrelated minor fixes to the above patch (nonincremental) review
Messages (3)
msg196816 - (view) Author: Elazar Gershuni (elazar) * Date: 2013-09-02 22:40
Inner sections "leak" out from enum to the general datatypes index:
http://docs.python.org/3.4/library/datatypes.html

(sections 8.14 - 8.17)
msg196817 - (view) Author: Elazar Gershuni (elazar) * Date: 2013-09-02 22:40
here's a patch.
msg197131 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-07 02:53
New changeset a55cbaf9a581 by Ethan Furman in branch 'default':
Close #18908: Keep Enum docs in their own section.  Patch by Elazar Gershuni.
http://hg.python.org/cpython/rev/a55cbaf9a581
History
Date User Action Args
2022-04-11 14:57:50adminsetgithub: 63108
2013-09-07 02:53:42python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg197131

resolution: fixed
stage: patch review -> resolved
2013-09-02 23:53:44elazarsetfiles: + enumplusminor.patch
2013-09-02 23:53:10elazarsetfiles: - enumplusminor.patch
2013-09-02 23:47:48elazarsetfiles: + enumplusminor.patch
2013-09-02 22:53:42elazarsetfiles: + enumindent.patch
2013-09-02 22:47:41eli.benderskysetstage: patch review
versions: + Python 3.4
2013-09-02 22:47:26eli.benderskysetnosy: + eli.bendersky, ethan.furman
2013-09-02 22:40:42elazarsetfiles: + enumcontain.patch
keywords: + patch
messages: + msg196817
2013-09-02 22:40:00elazarcreate