MCPcopy 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_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