(base_path: str | None = None)
| 218 | |
| 219 | |
| 220 | def build_python_path(base_path: str | None = None) -> str: |
| 221 | candidates = [str(ROOT_DIR)] |
| 222 | if base_path: |
| 223 | candidates.extend(split_path_entries(base_path)) |
| 224 | return os.pathsep.join(dedupe_existing_paths(candidates)) |
| 225 | |
| 226 | |
| 227 | def choose_loopback_port() -> int: |
no test coverage detected