(self)
| 349 | self._enable_bracketed_paste() |
| 350 | |
| 351 | def restore(self) -> None: |
| 352 | if self.__vt_support: |
| 353 | # Recover to original mode before running REPL |
| 354 | self._disable_bracketed_paste() |
| 355 | if not SetConsoleMode(InHandle, self.__original_input_mode): |
| 356 | raise WinError(get_last_error()) |
| 357 | |
| 358 | def _move_relative(self, x: int, y: int) -> None: |
| 359 | """Moves relative to the current posxy""" |
nothing calls this directly
no test coverage detected