(self, *a, **kw)
| 83 | |
| 84 | class PythonRepl(PythonInput): |
| 85 | def __init__(self, *a, **kw) -> None: |
| 86 | self._startup_paths: Sequence[str | Path] | None = kw.pop("startup_paths", None) |
| 87 | super().__init__(*a, **kw) |
| 88 | self._load_start_paths() |
| 89 | |
| 90 | def _load_start_paths(self) -> None: |
| 91 | "Start the Read-Eval-Print Loop." |
nothing calls this directly
no test coverage detected