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: Pydoc should ignore __package__ attributes
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ncoghlan Nosy List: ncoghlan
Priority: normal Keywords:

Created on 2008-06-24 12:18 by ncoghlan, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg68682 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2008-06-24 12:18
Pydoc doesn't display the standard special attributes for packages and
modules (__name__, __file__, __path__).

It shouldn't display PEP 361's new __package__ attribute either.
msg69088 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2008-07-02 13:10
Fixed for 2.6b2 in rev 64656 (will be ported to Py3k as part of the
normal merge process)
History
Date User Action Args
2022-04-11 14:56:35adminsetgithub: 47440
2008-07-02 13:10:21ncoghlansetstatus: open -> closed
resolution: fixed
messages: + msg69088
2008-06-24 12:18:42ncoghlancreate