(self, other)
| 442 | return result |
| 443 | |
| 444 | def __and__(self, other): |
| 445 | if not isinstance(other, IdentitySet): |
| 446 | return NotImplemented |
| 447 | return self.intersection(other) |
| 448 | |
| 449 | # def intersection_update(self, iterable: Iterable[Any]) -> None: |
| 450 | @cython.ccall |
nothing calls this directly
no test coverage detected