summaryrefslogtreecommitdiff
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2007-12-13 22:55:52 +0000
committerRaymond Hettinger <python@rcn.com>2007-12-13 22:55:52 +0000
commit04a9a0e904d31875bc7bbcbe0899076194d3cb6f (patch)
treec134bd02f47813c57fcd565b568d7c57320ddf1e /Lib/collections.py
parente552959184ff58bfdcd72a6cc8d1460aaf82537d (diff)
downloadcpython-git-04a9a0e904d31875bc7bbcbe0899076194d3cb6f.tar.gz
Simplify implementation of __replace__()
Diffstat (limited to 'Lib/collections.py')
-rw-r--r--Lib/collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index e551f20d8e..0b0a26bb46 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -70,7 +70,7 @@ def namedtuple(typename, field_names, verbose=False):
return dict(zip(%(field_names)r, self))
def __replace__(self, **kwds):
'Return a new %(typename)s object replacing specified fields with new values'
- return %(typename)s(**dict(zip(%(field_names)r, self) + kwds.items())) \n''' % locals()
+ return %(typename)s(**dict(zip(%(field_names)r, self), **kwds)) \n''' % locals()
for i, name in enumerate(field_names):
template += ' %s = property(itemgetter(%d))\n' % (name, i)
if verbose: