Return the characters that have been typed but not yet processed.
(self)
| 470 | raise WinError(GetLastError()) |
| 471 | |
| 472 | def getpending(self) -> Event: |
| 473 | """Return the characters that have been typed but not yet |
| 474 | processed.""" |
| 475 | return Event("key", "", b"") |
| 476 | |
| 477 | def wait(self, timeout: float | None) -> bool: |
| 478 | """Wait for an event.""" |