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.

Author stefan
Recipients stefan
Date 2018-12-09.17:41:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544377302.47.0.788709270274.issue35449@psf.upfronthosting.co.za>
In-reply-to
Content
On multiple occasions I have wanted to add documentation not only to Python classes and functions, but also instance variables. This seems to involve (at least) two orthogonal questions:

1) what is the proper syntax to associate documentation (docstrings ?) to objects ?
2) what changes need to be applied to Python's infrastructure (e.g., the help system) to support it ?


I have attempted to work around 1) in my custom code by explicitly setting an object's `__doc__` attribute. However, calling `help()` on such an object would simply ignore that attribute, and instead list the documentation associated with the instance type.

Am I missing something here, i.e. am I approaching the problem the wrong way, or am I the first to want to use object-specific documentation ?
History
Date User Action Args
2018-12-09 17:41:42stefansetrecipients: + stefan
2018-12-09 17:41:42stefansetmessageid: <1544377302.47.0.788709270274.issue35449@psf.upfronthosting.co.za>
2018-12-09 17:41:42stefanlinkissue35449 messages
2018-12-09 17:41:42stefancreate