blob: 4966a984f631be95d5ff3509a96411ff5ccb5a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# for py34 or above
from functools import partialmethod
class Cell(object):
"""An example for partialmethod.
refs: https://docs.python.jp/3/library/functools.html#functools.partialmethod
"""
def set_state(self, state):
"""Update state of cell to *state*."""
#: Make a cell alive.
set_alive = partialmethod(set_state, True)
# a partialmethod with no docstring
set_dead = partialmethod(set_state, False)
|