Return whether *y* is in the open (:attr:`y0`, :attr:`y1`) interval.
(self, y)
| 448 | return x0 < x < x1 or x0 > x > x1 |
| 449 | |
| 450 | def fully_containsy(self, y): |
| 451 | """ |
| 452 | Return whether *y* is in the open (:attr:`y0`, :attr:`y1`) interval. |
| 453 | """ |
| 454 | y0, y1 = self.intervaly |
| 455 | return y0 < y < y1 or y0 > y > y1 |
| 456 | |
| 457 | def fully_contains(self, x, y): |
| 458 | """ |