Push a character to the console event queue.
(self, char: int | bytes)
| 400 | del self.old_sigwinch |
| 401 | |
| 402 | def push_char(self, char: int | bytes) -> None: |
| 403 | """ |
| 404 | Push a character to the console event queue. |
| 405 | """ |
| 406 | trace("push char {char!r}", char=char) |
| 407 | self.event_queue.push(char) |
| 408 | |
| 409 | def get_event(self, block: bool = True) -> Event | None: |
| 410 | """ |