Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_sets.py283 self.set.union_update(Set([3, 4, 5]))
409 self.set.union_update(())
413 self.set.union_update(("a",))
417 self.set.union_update(("a", "z"))
530 self.set.union_update(self.other)
532 self.assertRaises(TypeError, self.set.union_update, self.other)
/external/python/cpython2/Lib/
Dsets.py434 def union_update(self, other): member in Set
/external/python/cpython2/Doc/library/
Dsets.rst185 Also note, the module also includes a :meth:`union_update` method which is an
277 * The built-in versions do not have a :meth:`union_update` method. Instead, use
/external/python/cpython3/Doc/whatsnew/
D2.3.rst69 :meth:`union_update` and :meth:`intersection_update`. ::
81 >>> S1.union_update(S2)
/external/python/cpython2/Doc/whatsnew/
D2.3.rst69 :meth:`union_update` and :meth:`intersection_update`. ::
81 >>> S1.union_update(S2)