summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index a6cf66b..8d2b18a 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -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: