Home
last modified time | relevance | path

Searched refs:intersection_update (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/
D_weakrefset.py149 def intersection_update(self, other): member in WeakSet
154 self.data.intersection_update(ref(item) for item in other)
Dsets.py444 def intersection_update(self, other): member in Set
/external/python/cpython2/Lib/test/
Dtest_set.py474 retval = self.s.intersection_update(self.otherword)
481 self.assertRaises(PassThru, self.s.intersection_update, check_pass_thru())
482 self.assertRaises(TypeError, self.s.intersection_update, [[]])
486 self.assertEqual(s.intersection_update(C(p)), None)
491 self.assertEqual(s.intersection_update(C(p), C(t)), None)
1083 self.set.intersection_update(set([3, 4, 5]))
1321 self.set.intersection_update(self.other)
1324 self.set.intersection_update,
Dtest_sets.py303 self.set.intersection_update(Set([3, 4, 5]))
552 self.set.intersection_update(self.other)
555 self.set.intersection_update,
Dtest_weakset.py279 retval = self.s.intersection_update(self.items2)
286 self.assertRaises(TypeError, self.s.intersection_update, [[]])
/external/python/cpython2/Doc/library/
Dsets.rst153 | ``s.intersection_update(t)`` | *s* &= *t* | return set *s* keeping only |
178 Note, the non-operator versions of :meth:`update`, :meth:`intersection_update`,
Dstdtypes.rst1955 .. method:: intersection_update(*others)
2000 :meth:`intersection_update`, :meth:`difference_update`, and
/external/fonttools/Lib/fontTools/
Dsubset.py1970 self.glyphs.intersection_update(realGlyphs)
1991 self.glyphs.intersection_update(realGlyphs)
2003 self.glyphs.intersection_update(realGlyphs)
/external/python/cpython2/Doc/whatsnew/
D2.3.rst69 :meth:`union_update` and :meth:`intersection_update`. ::
D2.6.rst1580 :meth:`intersection_update`,
/external/python/cpython2/Misc/
DNEWS9670 intersection(), intersection_update(), difference(), and difference_update().