mirror of https://github.com/python/cpython
merge 3.4 (#21105)
This commit is contained in:
commit
ba6eba0850
|
@ -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