(self, other)
| 618 | return True |
| 619 | |
| 620 | def __or__(self, other): |
| 621 | if not isinstance(other, Iterable): |
| 622 | return NotImplemented |
| 623 | chain = (e for s in (self, other) for e in s) |
| 624 | return self._from_iterable(chain) |
| 625 | |
| 626 | __ror__ = __or__ |
| 627 |
nothing calls this directly
no test coverage detected