summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py4
1 files changed, 0 insertions, 4 deletions
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: