Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19302de

Browse files
committed
join(): Wax the incorrect leading comment
1 parent 7574587 commit 19302de

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

Lib/macpath.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ def isabs(s):
2020
return ':' in s and s[0] <> ':'
2121

2222

23-
# Join pathnames.
24-
# Ignore the previous parts if a part is absolute.
25-
# Insert a '/' unless the first part is empty or already ends in '/'.
26-
2723
def join(s, *p):
2824
path = s
2925
for t in p:

Lib/ntpath.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ def isabs(s):
3434
return s != '' and s[:1] in '/\\'
3535

3636

37-
# Join pathnames.
38-
# Ignore the previous parts if a part is absolute.
39-
# Insert a '/' unless the first part is empty or already ends in '/'.
40-
4137
def join(a, *p):
4238
path = a
4339
for b in p:

0 commit comments

Comments
 (0)