summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2018-08-07 00:08:39 (GMT)
committerGitHub <noreply@github.com>2018-08-07 00:08:39 (GMT)
commitb0bf51b32240369ccb736dc32ff82bb96f375402 (patch)
treee6939efd879f773f6ab9697efca227f4cec34fa0
parent3da5c5c76d90ddfc4c188cc801d9387501b63b7f (diff)
downloadcpython-b0bf51b32240369ccb736dc32ff82bb96f375402.zip
cpython-b0bf51b32240369ccb736dc32ff82bb96f375402.tar.gz
cpython-b0bf51b32240369ccb736dc32ff82bb96f375402.tar.bz2
bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544)
-rw-r--r--Lib/ntpath.py42
-rw-r--r--Lib/test/test_ntpath.py4
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-29-14-12-23.bpo-31047.FSarLs.rst2
3 files changed, 26 insertions, 22 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index a5e79ba..24113e7 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -518,38 +518,36 @@ def normpath(path):
comps.append(curdir)
return prefix + sep.join(comps)
+def _abspath_fallback(path):
+ """Return the absolute version of a path as a fallback function in case
+ `nt._getfullpathname` is not available or raises OSError. See bpo-31047 for
+ more.
+
+ """
+
+ path = os.fspath(path)
+ if not isabs(path):
+ if isinstance(path, bytes):
+ cwd = os.getcwdb()
+ else:
+ cwd = os.getcwd()
+ path = join(cwd, path)
+ return normpath(path)
# Return an absolute path.
try:
from nt import _getfullpathname
except ImportError: # not running on Windows - mock up something sensible
- def abspath(path):
- """Return the absolute version of a path."""
- path = os.fspath(path)
- if not isabs(path):
- if isinstance(path, bytes):
- cwd = os.getcwdb()
- else:
- cwd = os.getcwd()
- path = join(cwd, path)
- return normpath(path)
+ abspath = _abspath_fallback
else: # use native Windows method on Windows
def abspath(path):
"""Return the absolute version of a path."""
-
- if path: # Empty path must return current working directory.
- path = os.fspath(path)
- try:
- path = _getfullpathname(path)
- except OSError:
- pass # Bad path - return unchanged.
- elif isinstance(path, bytes):
- path = os.getcwdb()
- else:
- path = os.getcwd()
- return normpath(path)
+ try:
+ return _getfullpathname(path)
+ except OSError:
+ return _abspath_fallback(path)
# realpath is a no-op on systems without islink support
realpath = abspath
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py
index 4076184..f93d902 100644
--- a/Lib/test/test_ntpath.py
+++ b/Lib/test/test_ntpath.py
@@ -303,6 +303,10 @@ class TestNtpath(unittest.TestCase):
try:
import nt
tester('ntpath.abspath("C:\\")', "C:\\")
+ with support.temp_cwd(support.TESTFN) as cwd_dir: # bpo-31047
+ tester('ntpath.abspath("")', cwd_dir)
+ tester('ntpath.abspath(" ")', cwd_dir + "\\ ")
+ tester('ntpath.abspath("?")', cwd_dir + "\\?")
except ImportError:
self.skipTest('nt module not available')
diff --git a/Misc/NEWS.d/next/Library/2018-07-29-14-12-23.bpo-31047.FSarLs.rst b/Misc/NEWS.d/next/Library/2018-07-29-14-12-23.bpo-31047.FSarLs.rst
new file mode 100644
index 0000000..6415d4a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-07-29-14-12-23.bpo-31047.FSarLs.rst
@@ -0,0 +1,2 @@
+Fix ``ntpath.abspath`` for invalid paths on windows. Patch by Franz
+Woellert.