(self, signum: int, frame: FrameType | None)
| 618 | ) |
| 619 | |
| 620 | def sigtstp_handler(self, signum: int, frame: FrameType | None) -> None: |
| 621 | self.scroll_offset = len(self.lines_for_display) |
| 622 | self.__exit__(None, None, None) |
| 623 | self.on_suspend() |
| 624 | os.kill(os.getpid(), signal.SIGTSTP) |
| 625 | self.after_suspend() |
| 626 | self.__enter__() |
| 627 | |
| 628 | def clean_up_current_line_for_exit(self): |
| 629 | """Called when trying to exit to prep for final paint""" |
nothing calls this directly
no test coverage detected