(p)
| 1568 | |
| 1569 | |
| 1570 | def to_native_path(p): |
| 1571 | if (WINDOWS and not MSYS) and not os_override: |
| 1572 | return to_unix_path(p).replace('/', '\\') |
| 1573 | else: |
| 1574 | return to_unix_path(p) |
| 1575 | |
| 1576 | |
| 1577 | # Finds and returns a list of the directories that need to be added to PATH for |
no test coverage detected