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

Method __setitem__

Lib/dbm/sqlite3.py:100–101  ·  view source on GitHub ↗
(self, key, value)

Source from the content-addressed store, hash-verified

98 return row[0]
99
100 def __setitem__(self, key, value):
101 self._execute(STORE_KV, (key, value))
102
103 def __delitem__(self, key):
104 with self._execute(DELETE_KEY, (key,)) as cu:

Callers

nothing calls this directly

Calls 1

_executeMethod · 0.95

Tested by

no test coverage detected