(self, other: AbstractSet[object])
| 1027 | return self |
| 1028 | |
| 1029 | def __iand__(self, other: AbstractSet[object]) -> MutableSet[_T]: |
| 1030 | self.intersection_update(other) |
| 1031 | return self |
| 1032 | |
| 1033 | def __ixor__(self, other: AbstractSet[_T]) -> MutableSet[_T]: # type: ignore[override,misc] # noqa: E501 |
| 1034 | self.symmetric_difference_update(other) |
nothing calls this directly
no test coverage detected