diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-30 15:07:25 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-30 15:07:25 -0400 |
commit | ba6eba0850aba59b9968c1d4b465dbf8e6f2cdca (patch) | |
tree | 7819dba9fb87a16a27170f21da70d393a5b8819c | |
parent | 6e50ccd3031826fd7e232bece040a36b740c2dd2 (diff) | |
parent | 3a4340325b153eab1f1bb1b91882d777fe6bcb21 (diff) | |
download | cpython-git-ba6eba0850aba59b9968c1d4b465dbf8e6f2cdca.tar.gz |
merge 3.4 (#21105)
-rw-r--r-- | Doc/library/functools.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 77cd8384b1..c46b7997c1 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -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 |