diff options
author | Steve Dower <steve.dower@python.org> | 2019-11-15 17:49:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 17:49:21 (GMT) |
commit | abde52cd8e31830bfc06c5803221faae6172104a (patch) | |
tree | 32244b8a0ba8ec1899eb1549c151476fd264f867 /Misc | |
parent | b22030073b9327a3aeccb69507694bce078192aa (diff) | |
download | cpython-abde52cd8e31830bfc06c5803221faae6172104a.zip cpython-abde52cd8e31830bfc06c5803221faae6172104a.tar.gz cpython-abde52cd8e31830bfc06c5803221faae6172104a.tar.bz2 |
bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967)
Ensure isabs() is always True for \\?\ prefixed paths
Avoid unnecessary usage of readlink() to avoid resolving broken links incorrectly
Ensure shutil tests run in test directory
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2019-10-28-10-32-43.bpo-38453.NwwatW.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2019-10-28-10-32-43.bpo-38453.NwwatW.rst b/Misc/NEWS.d/next/Windows/2019-10-28-10-32-43.bpo-38453.NwwatW.rst new file mode 100644 index 0000000..deacb03 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2019-10-28-10-32-43.bpo-38453.NwwatW.rst @@ -0,0 +1 @@ +Ensure ntpath.realpath() correctly resolves relative paths. |