summaryrefslogtreecommitdiff
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-02-18 22:06:21 +0000
committerBarry Warsaw <barry@python.org>1997-02-18 22:06:21 +0000
commit96d9c91b055b950b0441806f8003e75e60a8cb88 (patch)
tree50c05168729ebf35fc46b4a11f4eea7e5883a2ee /Lib/macpath.py
parentd5694fc8905904b7d4248345dd906db1e5ee79e0 (diff)
downloadcpython-96d9c91b055b950b0441806f8003e75e60a8cb88.tar.gz
join(): Wax the incorrect leading comment
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 a6cf66b19f..8d2b18a68c 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: