(self, other: AbstractSet[_T])
| 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) |