(self, line: str)
| 484 | # like readline.c |
| 485 | |
| 486 | def add_history(self, line: str) -> None: |
| 487 | self.get_reader().history.append(self._histline(line)) |
| 488 | |
| 489 | def set_startup_hook(self, function: Callback | None = None) -> None: |
| 490 | self.startup_hook = function |
nothing calls this directly
no test coverage detected