From 1fb84519b1efa71a02c6d63800e47937922e6483 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 15 Oct 2008 21:58:46 +0000 Subject: [PATCH] add a much requested newline --- Doc/library/functions.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 2.47.3