Convert path from posix to windows.
(path)
| 156 | return output.decode('UTF-8').strip() |
| 157 | |
| 158 | def cygpath(path): |
| 159 | """Convert path from posix to windows.""" |
| 160 | return os.path.abspath(path).replace('\\', '/') |
| 161 | |
| 162 | |
| 163 | def get_python_path(environ_cp, python_bin_path): |
no test coverage detected