mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
8 lines
107 B
Python
8 lines
107 B
Python
class Cls:
|
|
def method(self):
|
|
"""Method docstring"""
|
|
pass
|
|
|
|
|
|
bound_method = Cls().method
|