Forget all pending, but not yet processed input.
(self)
| 517 | pass |
| 518 | |
| 519 | def forgetinput(self) -> None: |
| 520 | """Forget all pending, but not yet processed input.""" |
| 521 | if not FlushConsoleInputBuffer(InHandle): |
| 522 | raise WinError(get_last_error()) |
| 523 | |
| 524 | def getpending(self) -> Event: |
| 525 | """Return the characters that have been typed but not yet |
nothing calls this directly
no test coverage detected