(path)
| 33 | "samefile", "sameopenfile", "samestat", "commonpath"] |
| 34 | |
| 35 | def _get_bothseps(path): |
| 36 | if isinstance(path, bytes): |
| 37 | return b'\\/' |
| 38 | else: |
| 39 | return '\\/' |
| 40 | |
| 41 | # Normalize the case of a pathname and map slashes to backslashes. |
| 42 | # Other normalizations (such as optimizing '../' away) are not done |
no outgoing calls
no test coverage detected