MCPcopy
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_registriesFunction · 0.45
test_popitemMethod · 0.45
_test_dictMethod · 0.45

Calls 1

changedMethod · 0.45

Tested by 2

test_popitemMethod · 0.36
_test_dictMethod · 0.36