summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-06-27 21:34:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-06-27 21:34:24 (GMT)
commitee51cffc95ead121f91d8f4ac428aa6f44f10afc (patch)
tree1e94c7ce12a71b1555c08d9123c46460bd94a658 /Doc/library/collections.rst
parentdf90ee6c5f3c017af752cf6b954aa90d3e1e5ea4 (diff)
downloadcpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.zip
cpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.tar.gz
cpython-ee51cffc95ead121f91d8f4ac428aa6f44f10afc.tar.bz2
Fix whitespace in example code.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst4
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))