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

Method pop

lib/sqlalchemy/ext/mutable.py:939–942  ·  view source on GitHub ↗
(self, *arg: SupportsIndex)

Source from the content-addressed store, hash-verified

937 self.changed()
938
939 def pop(self, *arg: SupportsIndex) -> _T:
940 result = list.pop(self, *arg)
941 self.changed()
942 return result
943
944 def append(self, x: _T) -> None:
945 list.append(self, x)

Callers

nothing calls this directly

Calls 2

popMethod · 0.45
changedMethod · 0.45

Tested by

no test coverage detected