(self, other)
| 680 | return any(exp.has_lower_bound for exp in self.expectations) |
| 681 | |
| 682 | def __and__(self, other): |
| 683 | assert isinstance(other, Expectation) |
| 684 | return AndExpectation(*(self.expectations + (other,))) |
| 685 | |
| 686 | def __repr__(self): |
| 687 | return "(" + " & ".join(repr(exp) for exp in self.expectations) + ")" |
nothing calls this directly
no test coverage detected