Commit 400daedb authored by Raymond Hettinger's avatar Raymond Hettinger

Fix whitespace in example.

parent b4b3575e
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment