(self, other: AbstractSet[_T])
| 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) |
| 1035 | return self |
| 1036 | |
| 1037 | def __isub__(self, other: AbstractSet[object]) -> MutableSet[_T]: # type: ignore[misc,unused-ignore] # noqa: E501 |
| 1038 | self.difference_update(other) |
nothing calls this directly
no test coverage detected