(self)
| 404 | return info.srWindow.Bottom # type: ignore[no-any-return] |
| 405 | |
| 406 | def _read_input(self) -> INPUT_RECORD | None: |
| 407 | rec = INPUT_RECORD() |
| 408 | read = DWORD() |
| 409 | if not ReadConsoleInput(InHandle, rec, 1, read): |
| 410 | raise WinError(get_last_error()) |
| 411 | |
| 412 | return rec |
| 413 | |
| 414 | def _read_input_bulk( |
| 415 | self, n: int |
no test coverage detected