(self, other)
| 642 | if value not in self) |
| 643 | |
| 644 | def __xor__(self, other): |
| 645 | if not isinstance(other, Set): |
| 646 | if not isinstance(other, Iterable): |
| 647 | return NotImplemented |
| 648 | other = self._from_iterable(other) |
| 649 | return (self - other) | (other - self) |
| 650 | |
| 651 | __rxor__ = __xor__ |
| 652 |
nothing calls this directly
no test coverage detected