You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Windows path separator is the backslash (i.e. `\\`). This causes
problems when python reads files from the `Users` folder since `\\U` is
the prefix for a Unicode string in python.
Since `os.path` can properly parse forward slashes on all OS's, we
substitute `\\` for `/` wherever `os.path` methods return backslashes.
0 commit comments