make partialmethod example work (closes #21105)
This commit is contained in:
parent
a7fcd926e8
commit
3a4340325b
|
@ -218,6 +218,8 @@ The :mod:`functools` module defines the following functions:
|
|||
Example::
|
||||
|
||||
>>> class Cell(object):
|
||||
... def __init__(self):
|
||||
... self._alive = False
|
||||
... @property
|
||||
... def alive(self):
|
||||
... return self._alive
|
||||
|
|
Loading…
Reference in New Issue