[Python-checkins] r66906 - python/trunk/Doc/library/functions.rst

benjamin.peterson python-checkins at python.org
Wed Oct 15 23:58:47 CEST 2008


Author: benjamin.peterson
Date: Wed Oct 15 23:58:46 2008
New Revision: 66906

Log:
add a much requested newline

Modified:
   python/trunk/Doc/library/functions.rst

Modified: python/trunk/Doc/library/functions.rst
==============================================================================
--- python/trunk/Doc/library/functions.rst	(original)
+++ python/trunk/Doc/library/functions.rst	Wed Oct 15 23:58:46 2008
@@ -908,7 +908,8 @@
    best explained with an example::
 
       class C(object):
-          def __init__(self): self._x = None
+          def __init__(self):
+              self._x = None
 
           @property
           def x(self):


More information about the Python-checkins mailing list