Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/sqlalchemy/sqlalchemy
/ pop
Method
pop
lib/sqlalchemy/ext/mutable.py:935–938 ·
view source on GitHub ↗
(self, *arg: SupportsIndex)
Source
from the content-addressed store, hash-verified
933
self.changed()
934
935
def
pop(self, *arg: SupportsIndex) -> _T:
936
result = list.pop(self, *arg)
937
self.changed()
938
return
result
939
940
def
append(self, x: _T) -> None:
941
list.append(self, x)
Callers
nothing calls this directly
Calls
2
pop
Method · 0.45
changed
Method · 0.45
Tested by
no test coverage detected