(self, other: IdentitySet)
| 413 | return result |
| 414 | |
| 415 | def __sub__(self, other: IdentitySet) -> IdentitySet: |
| 416 | if not isinstance(other, IdentitySet): |
| 417 | return NotImplemented |
| 418 | return self.difference(other) |
| 419 | |
| 420 | # def difference_update(self, iterable: Iterable[Any]) -> None: |
| 421 | @cython.ccall |
nothing calls this directly
no test coverage detected