summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-07 20:56:05 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-07 20:56:05 (GMT)
commitf5e8af1bb7e375e86298ae7a4ee5b6c3e8a22db4 (patch)
tree8cbfe6aeb3e8a39c55ab396035cec41bb0d13720 /Lib/collections.py
parentfb3ced663dc321310cb319a1b9fcf3d7b7b1deae (diff)
downloadcpython-f5e8af1bb7e375e86298ae7a4ee5b6c3e8a22db4.zip
cpython-f5e8af1bb7e375e86298ae7a4ee5b6c3e8a22db4.tar.gz
cpython-f5e8af1bb7e375e86298ae7a4ee5b6c3e8a22db4.tar.bz2
Use get() instead of pop() for the optimized version 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 c19821b..099cdd6 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -130,7 +130,7 @@ if __name__ == '__main__':
'Point class with optimized _make() and _replace() without error-checking'
_make = classmethod(tuple.__new__)
def _replace(self, _map=map, **kwds):
- return self._make(_map(kwds.pop, ('x', 'y'), self))
+ return self._make(_map(kwds.get, ('x', 'y'), self))
print Point(11, 22)._replace(x=100)