MCPcopy
hub / github.com/qiwsir/StarterLearningPython / __delitem__

Method __delitem__

newcodes/answers/q72.py:21–23  ·  view source on GitHub ↗
(self, k)

Source from the content-addressed store, hash-verified

19 insort_left(self._rating, (v, k))
20
21 def __delitem__(self, k):
22 del self._rating[self.rating(k)]
23 dict.__delitem__(self, k)
24
25 __len__ = dict.__len__
26 __contains__ = dict.__contains__

Callers

nothing calls this directly

Calls 1

ratingMethod · 0.95

Tested by

no test coverage detected