(self, line: str)
| 414 | return "".join(sorted(self.config.completer_delims)) |
| 415 | |
| 416 | def _histline(self, line: str) -> str: |
| 417 | line = line.rstrip("\n") |
| 418 | return line |
| 419 | |
| 420 | def get_history_length(self) -> int: |
| 421 | return self.saved_history_length |
no test coverage detected