commit | ee51cffc95ead121f91d8f4ac428aa6f44f10afc | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Fri Jun 27 21:34:24 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Fri Jun 27 21:34:24 2008 +0000 |
tree | 1e94c7ce12a71b1555c08d9123c46460bd94a658 | |
parent | df90ee6c5f3c017af752cf6b954aa90d3e1e5ea4 [diff] |
Fix whitespace in example code.
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index cbad297..d9af24c 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst
@@ -540,8 +540,8 @@ raise ValueError('Got unexpected field names: %r' % kwds.keys()) return result <BLANKLINE> - def __getnewargs__(self): - return tuple(self) + def __getnewargs__(self): + return tuple(self) <BLANKLINE> x = property(itemgetter(0)) y = property(itemgetter(1))