STINNER Victor <vstin...@python.org> added the comment:

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>
---

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43682>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to