MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / pop

Method pop

lib/sqlalchemy/ext/mutable.py:1057–1060  ·  view source on GitHub ↗
(self, *arg: Any)

Source from the content-addressed store, hash-verified

1055 self.changed()
1056
1057 def pop(self, *arg: Any) -> _T:
1058 result = set.pop(self, *arg)
1059 self.changed()
1060 return result
1061
1062 def clear(self) -> None:
1063 set.clear(self)

Callers 15

create_mock_engineFunction · 0.45
_instantiate_pluginsMethod · 0.45
_parse_urlFunction · 0.45
create_engineFunction · 0.45
pop_kwargFunction · 0.45
engine_from_configFunction · 0.45
create_pool_from_urlFunction · 0.45
set_Method · 0.45
popMethod · 0.45
popMethod · 0.45

Calls 1

changedMethod · 0.45

Tested by

no test coverage detected