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 vstinner
Recipients Mark.Shannon, mark.dickinson, rhettinger, serhiy.storchaka, vstinner
Date 2021-04-08.11:34:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617881687.95.0.818821570812.issue43682@roundup.psfhosted.org>
In-reply-to
Content
There is a nice side effect of PR 25268 + PR 25117: pydoc provides better self documentation for the following code:

class X:
    @staticmethod
    def sm(x, y):
        '''A static method'''
        ...

pydoc on X.sm:
---
sm(x, y)
    A static method
---

instead of:
---
<staticmethod object>
---
History
Date User Action Args
2021-04-08 11:34:47vstinnersetrecipients: + vstinner, rhettinger, mark.dickinson, Mark.Shannon, serhiy.storchaka
2021-04-08 11:34:47vstinnersetmessageid: <1617881687.95.0.818821570812.issue43682@roundup.psfhosted.org>
2021-04-08 11:34:47vstinnerlinkissue43682 messages
2021-04-08 11:34:47vstinnercreate