Searched refs:intersection_update (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A D_weakrefset.py162 def intersection_update(self, other): member in class:WeakSet
165 self.data.intersection_update(ref(item) for item in other)
169 self.data.intersection_update(ref(item) for item in other)
H A Dsets.py444 def intersection_update(self, other): member in class:Set
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A D_weakrefset.py149 def intersection_update(self, other): member in class:WeakSet
154 self.data.intersection_update(ref(item) for item in other)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_set.py456 retval = self.s.intersection_update(self.otherword)
463 self.assertRaises(PassThru, self.s.intersection_update, check_pass_thru())
464 self.assertRaises(TypeError, self.s.intersection_update, [[]])
468 self.assertEqual(s.intersection_update(C(p)), None)
473 self.assertEqual(s.intersection_update(C(p), C(t)), None)
1015 self.set.intersection_update(set([3, 4, 5]))
1264 self.set.intersection_update(self.other)
1267 self.set.intersection_update,
1578 for methname in ('update', 'intersection_update',
H A Dtest_weakset.py249 retval = self.s.intersection_update(self.items2)
256 self.assertRaises(TypeError, self.s.intersection_update, [[]])
H A Dtest_sets.py304 self.set.intersection_update(Set([3, 4, 5]))
553 self.set.intersection_update(self.other)
556 self.set.intersection_update,

Completed in 50 milliseconds