join(): Wax the incorrect leading comment

This commit is contained in:
Barry Warsaw 1997-02-18 22:06:21 +00:00
parent 7574587587
commit 19302de7a0
2 changed files with 0 additions and 8 deletions

View File

@ -20,10 +20,6 @@ def isabs(s):
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):
path = s
for t in p:

View File

@ -34,10 +34,6 @@ def isabs(s):
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):
path = a
for b in p: