Home
last modified time | relevance | path

Searched refs:union_update (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_sets.py284 self.set.union_update(Set([3, 4, 5]))
410 self.set.union_update(())
414 self.set.union_update(("a",))
418 self.set.union_update(("a", "z"))
531 self.set.union_update(self.other)
533 self.assertRaises(TypeError, self.set.union_update, self.other)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsets.py434 def union_update(self, other): member in Set