We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two issues:
The last one fails:
$ mkdir -p /tmp/bla $ touch /tmp/bla/unctest.py $ python3 -c "import sys; sys.path.insert(0, r'C:/msys64/tmp/bla'); import unctest" $ python3 -c "import sys; sys.path.insert(0, r'C:\\msys64\\tmp\\bla'); import unctest" # broken: $ python3 -c "import sys; sys.path.insert(0, r'\\\\?\\C:\\msys64\\tmp\\bla'); import unctest" # works $ MSYSTEM= python3 -c "import sys; sys.path.insert(0, r'\\\\?\\C:\\msys64\\tmp\\bla'); import unctest"
Maybe related:
$ python3 -c "import os; print(os.path.normpath(r'\\\\?\\C:\\msys64\\tmp\\bla'))" //?/C:/msys64/tmp/bla
We should not normalize paths starting with with \\?\ even if MSYSTEM is set, as that would break them.
\\?\
Possible related downstream issues:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Two issues:
The last one fails:
Maybe related:
We should not normalize paths starting with with
\\?\
even if MSYSTEM is set, as that would break them.Possible related downstream issues:
The text was updated successfully, but these errors were encountered: