diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/bound_method.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/bound_method.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/bound_method.py b/tests/roots/test-ext-autodoc/target/bound_method.py new file mode 100644 index 0000000..d48b9ee --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/bound_method.py @@ -0,0 +1,7 @@ +class Cls: + def method(self): + """Method docstring""" + pass + + +bound_method = Cls().method |