projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df90ee6
)
Fix whitespace in example code.
author
Raymond Hettinger
<python@rcn.com>
Fri, 27 Jun 2008 21:34:24 +0000
(21:34 +0000)
committer
Raymond Hettinger
<python@rcn.com>
Fri, 27 Jun 2008 21:34:24 +0000
(21:34 +0000)
Doc/library/collections.rst
patch
|
blob
|
history
diff --git
a/Doc/library/collections.rst
b/Doc/library/collections.rst
index cbad297a4f603521eec25d0f9e710a0184967b41..d9af24ceb44924bc245a3d3c7345b91dc81fa5ab 100644
(file)
--- 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))