From c97a9c13dbf59b8970083425e59bfe1e8e565060 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 2 Aug 2014 22:32:10 -0700 Subject: Fix whitespace in example. --- Doc/library/reprlib.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Doc/library/reprlib.rst') diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index 24a8e529e7..568ac6fd06 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -49,8 +49,8 @@ string instead. >>> class MyList(list): ... @recursive_repr() - ... def __repr__(self): - ... return '<' + '|'.join(map(repr, self)) + '>' + ... def __repr__(self): + ... return '<' + '|'.join(map(repr, self)) + '>' ... >>> m = MyList('abc') >>> m.append(m) -- cgit v1.2.1