From: Benjamin Peterson Date: Wed, 15 Oct 2008 22:06:56 +0000 (+0000) Subject: Merged revisions 66906 via svnmerge from X-Git-Tag: v2.6.1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d586c4ed2ba5c1d98d29a2dc37af1077d876b9d2;p=thirdparty%2FPython%2Fcpython.git 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 ........ --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3ed4ab0b364e..487fadff8f46 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):