]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
join(): Wax the incorrect leading comment
authorBarry Warsaw <barry@python.org>
Tue, 18 Feb 1997 22:06:21 +0000 (22:06 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 18 Feb 1997 22:06:21 +0000 (22:06 +0000)
Lib/macpath.py
Lib/ntpath.py

index a6cf66b19ff3c78d8616c3600d866de29d8a2577..8d2b18a68c7216b22ac5df9b0786f16fe7c6c725 100644 (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:
index d3951545e411350d260a2bd0ba84f622f0769b7b..a5bdc050adb6da79ea76737e932844d8b2a3a5dc 100644 (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: