diff options
author | Steve Dower <steve.dower@python.org> | 2019-08-21 23:45:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 23:45:02 (GMT) |
commit | 06be2c7f357d12249445e95def1fb708a087b357 (patch) | |
tree | 8777204c0db7643d80818387491b695882874013 /Lib/ntpath.py | |
parent | 7ebdda0dbee7df6f0c945a7e1e623e47676e112d (diff) | |
download | cpython-06be2c7f357d12249445e95def1fb708a087b357.zip cpython-06be2c7f357d12249445e95def1fb708a087b357.tar.gz cpython-06be2c7f357d12249445e95def1fb708a087b357.tar.bz2 |
bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15369)
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index ef4999e..1d22d5f 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -458,7 +458,8 @@ def normpath(path): # in the case of paths with these prefixes: # \\.\ -> device names # \\?\ -> literal paths - # do not do any normalization, but return the path unchanged + # do not do any normalization, but return the path + # unchanged apart from the call to os.fspath() return path path = path.replace(altsep, sep) prefix, path = splitdrive(path) @@ -575,7 +576,7 @@ else: return abspath(tail) def realpath(path): - path = os.fspath(path) + path = normpath(path) if isinstance(path, bytes): prefix = b'\\\\?\\' unc_prefix = b'\\\\?\\UNC\\' @@ -586,6 +587,7 @@ else: unc_prefix = '\\\\?\\UNC\\' new_unc_prefix = '\\\\' cwd = os.getcwd() + did_not_exist = not exists(path) had_prefix = path.startswith(prefix) path = _getfinalpathname_nonstrict(path) # The path returned by _getfinalpathname will always start with \\?\ - @@ -603,7 +605,10 @@ else: if _getfinalpathname(spath) == path: path = spath except OSError as ex: - pass + # If the path does not exist and originally did not exist, then + # strip the prefix anyway. + if ex.winerror in {2, 3} and did_not_exist: + path = spath return path |