From 19302de7a044a5c9945586016826b1a5dac6d46a Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 18 Feb 1997 22:06:21 +0000 Subject: join(): Wax the incorrect leading comment --- Lib/macpath.py | 4 ---- Lib/ntpath.py | 4 ---- 2 files changed, 8 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: diff --git a/Lib/ntpath.py b/Lib/ntpath.py index d395154..a5bdc05 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -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: -- cgit v0.12