Push a character to the console event queue.
(self, char: int | bytes)
| 381 | del self.old_sigwinch |
| 382 | |
| 383 | def push_char(self, char: int | bytes) -> None: |
| 384 | """ |
| 385 | Push a character to the console event queue. |
| 386 | """ |
| 387 | trace("push char {char!r}", char=char) |
| 388 | self.event_queue.push(char) |
| 389 | |
| 390 | def get_event(self, block: bool = True) -> Event | None: |
| 391 | """ |