Commit ba6eba08 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.4 (#21105)

parents 6e50ccd3 3a434032
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment