summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library')
-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 75aa55e..5fcb293 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -394,9 +394,9 @@ Example::
def __repr__(self):
return 'Point(x=%r, y=%r)' % self
- def _asdict(self):
+ def _asdict(t):
'Return a new dict which maps field names to their values'
- return dict(zip(('x', 'y'), self))
+ return {'x': t[0], 'y': t[1]}
def _replace(self, **kwds):
'Return a new Point object replacing specified fields with new values'