diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/partialmethod.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/partialmethod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/roots/test-ext-autodoc/target/partialmethod.py b/tests/roots/test-ext-autodoc/target/partialmethod.py index 01cf4e798..4966a984f 100644 --- a/tests/roots/test-ext-autodoc/target/partialmethod.py +++ b/tests/roots/test-ext-autodoc/target/partialmethod.py @@ -14,5 +14,5 @@ class Cell(object): #: Make a cell alive. set_alive = partialmethod(set_state, True) + # a partialmethod with no docstring set_dead = partialmethod(set_state, False) - """Make a cell dead.""" |