diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-15 22:06:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-15 22:06:56 (GMT) |
commit | d586c4ed2ba5c1d98d29a2dc37af1077d876b9d2 (patch) | |
tree | ea3a1d858e858a8c43d8112446911665601ffa44 /Doc/library/functions.rst | |
parent | 38e46fc628f023750e90f727c918ab5fedc37b33 (diff) | |
download | cpython-d586c4ed2ba5c1d98d29a2dc37af1077d876b9d2.zip cpython-d586c4ed2ba5c1d98d29a2dc37af1077d876b9d2.tar.gz cpython-d586c4ed2ba5c1d98d29a2dc37af1077d876b9d2.tar.bz2 |
Merged revisions 66906 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66906 | benjamin.peterson | 2008-10-15 16:58:46 -0500 (Wed, 15 Oct 2008) | 1 line
add a much requested newline
........
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3ed4ab0..487fadf 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -908,7 +908,8 @@ available. They are listed here in alphabetical order. best explained with an example:: class C(object): - def __init__(self): self._x = None + def __init__(self): + self._x = None @property def x(self): |