Home
last modified time | relevance | path

Searched refs:_replace (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcollections.py657 def _replace(self, _map=map, **kwds): member in Point
660 print Point(11, 22)._replace(x=100)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcollections.py720 def _replace(self, _map=map, **kwds): member in Point
723 print Point(11, 22)._replace(x=100)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_collections.py85 self.assertEqual(p._replace(x=1), (1, 22)) # test _replace method
89 p._replace(x=1, error=2)
138 self.assertEqual(Dot(1)._replace(d=999), (999,))
156 b2 = b._replace(**dict([(names[1], 999),(names[-5], 42)]))
186 newt = t._replace(itemgetter=10, property=20, self=30, cls=40, tuple=50)
211 newt = t._replace(**dict(zip(T._fields, newvalues)))