Returns the current width and height of the display area.
(self)
| 487 | return 0 |
| 488 | |
| 489 | def get_term_hw(self) -> tuple[int, int]: |
| 490 | """Returns the current width and height of the display area.""" |
| 491 | return (50, 10) |
| 492 | |
| 493 | def _schedule_refresh(self, when: float): |
| 494 | """Arrange for the bpython display to be refreshed soon. |