(self, other)
| 634 | if value not in other) |
| 635 | |
| 636 | def __rsub__(self, other): |
| 637 | if not isinstance(other, Set): |
| 638 | if not isinstance(other, Iterable): |
| 639 | return NotImplemented |
| 640 | other = self._from_iterable(other) |
| 641 | return self._from_iterable(value for value in other |
| 642 | if value not in self) |
| 643 | |
| 644 | def __xor__(self, other): |
| 645 | if not isinstance(other, Set): |
nothing calls this directly
no test coverage detected