(self, conf=None)
| 40 | |
| 41 | class FakeRepl(repl.Repl): |
| 42 | def __init__(self, conf=None): |
| 43 | super().__init__(repl.Interpreter(), setup_config(conf)) |
| 44 | self._current_line = "" |
| 45 | self._cursor_offset = 0 |
| 46 | |
| 47 | def _get_current_line(self) -> str: |
| 48 | return self._current_line |
nothing calls this directly
no test coverage detected