MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __ior__

Method __ior__

lib/sqlalchemy/ext/mutable.py:1025–1027  ·  view source on GitHub ↗
(self, other: AbstractSet[_T])

Source from the content-addressed store, hash-verified

1023 self.changed()
1024
1025 def __ior__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501
1026 self.update(other)
1027 return self
1028
1029 def __iand__(self, other: AbstractSet[object]) -> MutableSet[_T]:
1030 self.intersection_update(other)

Callers

nothing calls this directly

Calls 1

updateMethod · 0.95

Tested by

no test coverage detected