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 rhettinger
Recipients rhettinger
Date 2021-10-15.21:29:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634333368.34.0.317512316582.issue45491@roundup.psfhosted.org>
In-reply-to
Content
When someone requests help(range), help(zip), help(property), or help(classmethod), the expectation and need is to see something like what is shown in main documentation rather than being subjected to a listing of every standard dunder method.

It would be nice to have a way to mark types that are mostly used like functions so that help() output will be more focused and less noisy.  Then help() can omit the Methods and Static methods sections.  It would keep the section for non-standard descriptors such as start, stop, step, fget, fset, or fdel.

Alternatively, for all types, we can condense the Methods and Static Methods sections to just list the standard dunder methods rather that eating several rows of output per method.
History
Date User Action Args
2021-10-15 21:29:28rhettingersetrecipients: + rhettinger
2021-10-15 21:29:28rhettingersetmessageid: <1634333368.34.0.317512316582.issue45491@roundup.psfhosted.org>
2021-10-15 21:29:28rhettingerlinkissue45491 messages
2021-10-15 21:29:28rhettingercreate