(self, line: str)
| 407 | return "".join(sorted(self.config.completer_delims)) |
| 408 | |
| 409 | def _histline(self, line: str) -> str: |
| 410 | line = line.rstrip("\n") |
| 411 | return line |
| 412 | |
| 413 | def get_history_length(self) -> int: |
| 414 | return self.saved_history_length |
no test coverage detected