Kaydet (Commit) 19302de7 authored tarafından Barry Warsaw's avatar Barry Warsaw

join(): Wax the incorrect leading comment

üst 75745875
...@@ -20,10 +20,6 @@ def isabs(s): ...@@ -20,10 +20,6 @@ def isabs(s):
return ':' in s and s[0] <> ':' return ':' in s and s[0] <> ':'
# Join pathnames.
# Ignore the previous parts if a part is absolute.
# Insert a '/' unless the first part is empty or already ends in '/'.
def join(s, *p): def join(s, *p):
path = s path = s
for t in p: for t in p:
......
...@@ -34,10 +34,6 @@ def isabs(s): ...@@ -34,10 +34,6 @@ def isabs(s):
return s != '' and s[:1] in '/\\' return s != '' and s[:1] in '/\\'
# Join pathnames.
# Ignore the previous parts if a part is absolute.
# Insert a '/' unless the first part is empty or already ends in '/'.
def join(a, *p): def join(a, *p):
path = a path = a
for b in p: for b in p:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment