summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-27 15:53:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-27 15:53:01 (GMT)
commite430073fe739cbba200742ed9e884d4a067bd0d0 (patch)
tree1ed58d61a9c87c177dea363041059202ce4e3a62 /Lib/macpath.py
parent6e7c14013a8e6564bb67edc92b1264e2fc4c9af5 (diff)
downloadcpython-e430073fe739cbba200742ed9e884d4a067bd0d0.zip
cpython-e430073fe739cbba200742ed9e884d4a067bd0d0.tar.gz
cpython-e430073fe739cbba200742ed9e884d4a067bd0d0.tar.bz2
Issue #9850: Fixed macpath.join() for empty first component. Patch by
Oleg Oshmyan.
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index cd4cb85..c31bdaa 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -42,7 +42,7 @@ def isabs(s):
def join(s, *p):
path = s
for t in p:
- if (not s) or isabs(t):
+ if (not path) or isabs(t):
path = t
continue
if t[:1] == ':':