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

Function delitem

Lib/operator.py:173–175  ·  view source on GitHub ↗

Same as del a[b].

(a, b)

Source from the content-addressed store, hash-verified

171 return count
172
173def delitem(a, b):
174 "Same as del a[b]."
175 del a[b]
176
177def getitem(a, b):
178 "Same as a[b]."

Callers 3

test_dict_delitemMethod · 0.85
test_object_delitemMethod · 0.85
test_sequence_delitemMethod · 0.85

Calls

no outgoing calls

Tested by 3

test_dict_delitemMethod · 0.68
test_object_delitemMethod · 0.68
test_sequence_delitemMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…