MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_difference_method_call

Method test_difference_method_call

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

Source from the content-addressed store, hash-verified

1311 self.assertEqual(self.set, set([2, 4, 6]))
1312
1313 def test_difference_method_call(self):
1314 self.set.difference_update(set([3, 4, 5]))
1315 self.assertEqual(self.set, set([2, 6]))
1316
1317#==============================================================================
1318

Callers

nothing calls this directly

Calls 3

setFunction · 0.85
difference_updateMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected