MCPcopy Index your code
hub / github.com/python/cpython / test_isdisjoint_superset

Method test_isdisjoint_superset

Lib/test/test_set.py:1197–1199  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1195 self.assertEqual(result, False)
1196
1197 def test_isdisjoint_superset(self):
1198 result = self.set.isdisjoint(set([2, 4, 6, 8]))
1199 self.assertEqual(result, False)
1200
1201 def test_isdisjoint_overlap(self):
1202 result = self.set.isdisjoint(set([3, 4, 5]))

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
isdisjointMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected