MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / pop

Method pop

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

Source from the content-addressed store, hash-verified

1051 self.changed()
1052
1053 def pop(self, *arg: Any) -> _T:
1054 result = set.pop(self, *arg)
1055 self.changed()
1056 return result
1057
1058 def clear(self) -> None:
1059 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