summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-15 21:58:46 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-15 21:58:46 (GMT)
commit1fb84519b1efa71a02c6d63800e47937922e6483 (patch)
tree92a6c38f5b0298f1816196f64358463adee5888a /Doc
parent9dc0a639bde934e840c5646cdaa5cbaadf1ddc9b (diff)
downloadcpython-1fb84519b1efa71a02c6d63800e47937922e6483.zip
cpython-1fb84519b1efa71a02c6d63800e47937922e6483.tar.gz
cpython-1fb84519b1efa71a02c6d63800e47937922e6483.tar.bz2
add a much requested newline
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index f70cc36..03525ca 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):