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

Method test_sym_difference_method_call

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

Source from the content-addressed store, hash-verified

1285 self.assertEqual(self.set, set([2, 4, 6, 8]))
1286
1287 def test_sym_difference_method_call(self):
1288 self.set.symmetric_difference_update(set([3, 4, 5]))
1289 self.assertEqual(self.set, set([2, 3, 5, 6]))
1290
1291 def test_difference_subset(self):
1292 self.set -= set((2, 4))

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
assertEqualMethod · 0.45

Tested by

no test coverage detected