( env: NodeJS.ProcessEnv = process.env, )
| 16 | } |
| 17 | |
| 18 | export function resolvePythonReplHostExecutable( |
| 19 | env: NodeJS.ProcessEnv = process.env, |
| 20 | ): string | null { |
| 21 | return resolvePythonReplHostExecutableFromEnv(env) |
| 22 | } |
| 23 | |
| 24 | // The bundled py_repl host previously lived under code/rust/py_repl_host and |
| 25 | // depended on codex/ sources outside the standalone code/ export. Keep the |
no test coverage detected