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

Method __delitem__

Lib/dbm/sqlite3.py:102–105  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

100 self._execute(STORE_KV, (key, value))
101
102 def __delitem__(self, key):
103 with self._execute(DELETE_KEY, (key,)) as cu:
104 if not cu.rowcount:
105 raise KeyError(key)
106
107 def __iter__(self):
108 try:

Callers

nothing calls this directly

Calls 1

_executeMethod · 0.95

Tested by

no test coverage detected