(path)
| 40 | |
| 41 | |
| 42 | def _get_sep(path): |
| 43 | if isinstance(path, bytes): |
| 44 | return b'/' |
| 45 | else: |
| 46 | return '/' |
| 47 | |
| 48 | # Normalize the case of a pathname. Trivial in Posix, string.lower on Mac. |
| 49 | # On MS-DOS this may also turn slashes into backslashes; however, other |
no test coverage detected