(raw_paths: str)
| 33 | |
| 34 | |
| 35 | def add_python_paths(raw_paths: str) -> None: |
| 36 | if not raw_paths: |
| 37 | return |
| 38 | for raw_path in reversed(raw_paths.split(os.pathsep)): |
| 39 | if raw_path: |
| 40 | sys.path.insert(0, raw_path) |
| 41 | |
| 42 | |
| 43 | def patch_runtime_calls() -> None: |