From 2389cd5f2ba5c6c128a37fe0465b10b36a86d34c Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 2 Aug 2014 22:30:26 -0700 Subject: [PATCH] Fix whitespace in example. --- Doc/library/reprlib.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.50.1