(self, x)
| 14627 | return not (max(self) == min(self) == 0) |
| 14628 | |
| 14629 | def __or__(self, x): |
| 14630 | if not hasattr(x, "__len__"): |
| 14631 | raise ValueError("bad operand 2") |
| 14632 | r = Rect(self) |
| 14633 | if len(x) == 2: |
| 14634 | return r.include_point(x) |
| 14635 | if len(x) == 4: |
| 14636 | return r.include_rect(x) |
| 14637 | raise ValueError("bad operand 2") |
| 14638 | |
| 14639 | def __pos__(self): |
| 14640 | return Rect(self) |
no test coverage detected