Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/sqlalchemy/sqlalchemy
/ popitem
Method
popitem
lib/sqlalchemy/ext/mutable.py:866–869 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
864
return
result
865
866
def
popitem(self) -> Tuple[_KT, _VT]:
867
result = dict.popitem(self)
868
self.changed()
869
return
result
870
871
def
clear(self) -> None:
872
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