Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ popitem
Method
popitem
lib/sqlalchemy/ext/mutable.py:862–865 · lib/sqlalchemy/ext/mutable.py::MutableDict.popitem
(self)
Source
from the content-addressed store, hash-verified
860
return
result
861
862
def
popitem(self) -> Tuple[_KT, _VT]:
863
result = dict.popitem(self)
864
self.changed()
865
return
result
866
867
def
clear(self) -> None:
868
dict.clear(self)
Callers
3
_dispose_registries
Function · 0.45
test_popitem
Method · 0.45
_test_dict
Method · 0.45
Calls
1
changed
Method · 0.45
Tested by
2
test_popitem
Method · 0.36
_test_dict
Method · 0.36