Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7574587 commit 19302deCopy full SHA for 19302de
2 files changed
Lib/macpath.py
@@ -20,10 +20,6 @@ def isabs(s):
20
return ':' in s and s[0] <> ':'
21
22
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
-
27
def join(s, *p):
28
path = s
29
for t in p:
Lib/ntpath.py
@@ -34,10 +34,6 @@ def isabs(s):
34
return s != '' and s[:1] in '/\\'
35
36
37
38
39
40
41
def join(a, *p):
42
path = a
43
for b in p:
0 commit comments