Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
173
def
delitem(a, b):
174
"Same as del a[b]."
175
del a[b]
176
177
def
getitem(a, b):
178
"Same as a[b]."
Callers
3
test_dict_delitem
Method · 0.85
test_object_delitem
Method · 0.85
test_sequence_delitem
Method · 0.85
Calls
no outgoing calls
Tested by
3
test_dict_delitem
Method · 0.68
test_object_delitem
Method · 0.68
test_sequence_delitem
Method · 0.68
Used in the wild
real call sites across dependent graphs
searching dependent graphs…