]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
add a much requested newline
authorBenjamin Peterson <benjamin@python.org>
Wed, 15 Oct 2008 21:58:46 +0000 (21:58 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 15 Oct 2008 21:58:46 +0000 (21:58 +0000)
Doc/library/functions.rst

index f70cc36e69fc2fe9159eecdeee61592046dd91ac..03525caa87252b054961bcbbac94b8504bbaad13 100644 (file)
@@ -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):