summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2000-08-14 06:20:32 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2000-08-14 06:20:32 (GMT)
commit647d2fe1451b1e7cd558771fcbae3fbdce1ffcf7 (patch)
treefafa3d92612fb730bbf0d3a7b191012c17cc236d /Lib/ntpath.py
parent0d0b1e93e1393b6a6661fe9837552812f2dbf781 (diff)
downloadcpython-647d2fe1451b1e7cd558771fcbae3fbdce1ffcf7.zip
cpython-647d2fe1451b1e7cd558771fcbae3fbdce1ffcf7.tar.gz
cpython-647d2fe1451b1e7cd558771fcbae3fbdce1ffcf7.tar.bz2
Fix for Bug #110673: os.abspatth() now always returns os.getcwd() on Windows, if an empty path is specified. It previously did not if an empty path was delegated to win32api.GetFullPathName())
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 034694d..f8334e5 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -416,8 +416,11 @@ def abspath(path):
return normpath(path)
abspath = _abspath
return _abspath(path)
- try:
- path = win32api.GetFullPathName(path)
- except win32api.error:
- pass # Bad path - return unchanged.
+ if path: # Empty path must return current working directory.
+ try:
+ path = win32api.GetFullPathName(path)
+ except win32api.error:
+ pass # Bad path - return unchanged.
+ else:
+ path = os.getcwd()
return normpath(path)