Kaydet (Commit) 3a434032 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

make partialmethod example work (closes #21105)

üst a7fcd926
......@@ -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