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

Method test_difference_method_call

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

Source from the content-addressed store, hash-verified

1305 self.assertEqual(self.set, set([2, 4, 6]))
1306
1307 def test_difference_method_call(self):
1308 self.set.difference_update(set([3, 4, 5]))
1309 self.assertEqual(self.set, set([2, 6]))
1310
1311#==============================================================================
1312

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
difference_updateMethod · 0.80
assertEqualMethod · 0.45

Tested by

no test coverage detected