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

Method pop

lib/sqlalchemy/ext/associationproxy.py:1580–1581  ·  view source on GitHub ↗
(self, index: int = -1)

Source from the content-addressed store, hash-verified

1578 self.col[index:index] = [self._create(value)]
1579
1580 def pop(self, index: int = -1) -> _T:
1581 return self.getter(self.col.pop(index))
1582
1583 def remove(self, value: _T) -> None:
1584 for i, val in enumerate(self):

Callers

nothing calls this directly

Calls 2

getterMethod · 0.45
popMethod · 0.45

Tested by

no test coverage detected