| commit | 2389cd5f2ba5c6c128a37fe0465b10b36a86d34c | [log] [tgz] |
|---|---|---|
| author | Raymond Hettinger <python@rcn.com> | Sat Aug 02 22:30:26 2014 -0700 |
| committer | Raymond Hettinger <python@rcn.com> | Sat Aug 02 22:30:26 2014 -0700 |
| tree | 347f1d86861ccd817d441eecc0fb89f51c1b7a10 | |
| parent | 045160bc39195eb4471b1d61c1c3c3849a19c604 [diff] |
Fix whitespace in example.
diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index 24a8e52..568ac6f 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst
@@ -49,8 +49,8 @@ >>> 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)