MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __iadd__

Method __iadd__

lib/sqlalchemy/ext/associationproxy.py:1645–1647  ·  view source on GitHub ↗
(self, iterable: Iterable[_T])

Source from the content-addressed store, hash-verified

1643 return n * list(self)
1644
1645 def __iadd__(self, iterable: Iterable[_T]) -> Self:
1646 self.extend(iterable)
1647 return self
1648
1649 def __imul__(self, n: SupportsIndex) -> Self:
1650 # unlike a regular list *=, proxied __imul__ will generate unique

Callers

nothing calls this directly

Calls 1

extendMethod · 0.95

Tested by

no test coverage detected