diff options
author | Raymond Hettinger <python@rcn.com> | 2008-06-27 21:34:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-06-27 21:34:24 (GMT) |
commit | ee51cffc95ead121f91d8f4ac428aa6f44f10afc (patch) | |
tree | 1e94c7ce12a71b1555c08d9123c46460bd94a658 /Doc | |
parent | df90ee6c5f3c017af752cf6b954aa90d3e1e5ea4 (diff) | |
download | cpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.zip cpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.tar.gz cpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.tar.bz2 |
Fix whitespace in example code.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.rst | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ Example: 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)) |