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: Teach pydoc to display full help for named tuples
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.1, Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, python-dev, rhettinger
Priority: normal Keywords: patch

Created on 2011-03-24 23:35 by rhettinger, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pydoc.patch rhettinger, 2011-03-24 23:35 Pydoc patch with tests
Messages (4)
msg132055 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-03-24 23:35
Teach pydoc to find methods and attributes with leadings underscores in a named tuple.
msg132108 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-03-25 16:19
LGTM.  I’m not sure I’d add it in stable versions, though.
msg132156 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-03-25 21:16
New changeset daa408ad7440 by Raymond Hettinger in branch '3.2':
Issue #11666: Teach pydoc to display full help for named tuples
http://hg.python.org/cpython/rev/daa408ad7440

New changeset 374982e17f36 by Raymond Hettinger in branch 'default':
Issue #11666: Teach pydoc to display full help for named tuples
http://hg.python.org/cpython/rev/374982e17f36
msg132178 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-03-25 23:00
New changeset 46aaa365111f by Raymond Hettinger in branch '2.7':
Issue #11666: Teach pydoc to display full help for named tuples
http://hg.python.org/cpython/rev/46aaa365111f
History
Date User Action Args
2022-04-11 14:57:15adminsetgithub: 55875
2011-03-25 23:00:37python-devsetmessages: + msg132178
2011-03-25 21:17:57rhettingersetstatus: open -> closed
resolution: fixed
title: Test pydoc to display full help for named tuples -> Teach pydoc to display full help for named tuples
2011-03-25 21:16:48python-devsetnosy: + python-dev
messages: + msg132156
2011-03-25 16:19:18eric.araujosetnosy: + eric.araujo
messages: + msg132108
2011-03-24 23:35:43rhettingercreate