Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ __setitem__
Method
__setitem__
Lib/dbm/sqlite3.py:99–100 ·
view source on GitHub ↗
(self, key, value)
Source
from the content-addressed store, hash-verified
97
return
row[0]
98
99
def
__setitem__(self, key, value):
100
self._execute(STORE_KV, (key, value))
101
102
def
__delitem__(self, key):
103
with
self._execute(DELETE_KEY, (key,))
as
cu:
Callers
nothing calls this directly
Calls
1
_execute
Method · 0.95
Tested by
no test coverage detected