From: Benjamin Peterson Date: Wed, 15 Oct 2008 21:58:46 +0000 (+0000) Subject: add a much requested newline X-Git-Tag: v2.7a1~2736 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1fb84519b1efa71a02c6d63800e47937922e6483;p=thirdparty%2FPython%2Fcpython.git add a much requested newline --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index f70cc36e69fc..03525caa8725 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):