(pythonPath: string)
| 127 | * as opposed to an absolute/relative path to a Python executable. |
| 128 | */ |
| 129 | export function isBareSystemPython(pythonPath: string): boolean { |
| 130 | return BARE_PYTHON_COMMAND.test(pythonPath) |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Checks if a Python command is available on the system. |
no outgoing calls
no test coverage detected