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

Method pop

lib/sqlalchemy/ext/mutable.py:935–938  ·  lib/sqlalchemy/ext/mutable.py::MutableList.pop
(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

popMethod · 0.45
changedMethod · 0.45

Tested by

no test coverage detected