summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2000-07-12 16:55:57 (GMT)
committerSkip Montanaro <skip@pobox.com>2000-07-12 16:55:57 (GMT)
commit97bc98aea784c64a74b6656f950ab2dffe84f228 (patch)
treecd39bcdb671a52e918ce9b893fa380ac23af6e51 /Lib/ntpath.py
parent03657cfdb056dbd36db12cc3db12a6b58a962e20 (diff)
downloadcpython-97bc98aea784c64a74b6656f950ab2dffe84f228.zip
cpython-97bc98aea784c64a74b6656f950ab2dffe84f228.tar.gz
cpython-97bc98aea784c64a74b6656f950ab2dffe84f228.tar.bz2
fixed semantics of commonprefix to work by path elements instead of
characters.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 23b7ce3..a1fcaa9 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -8,7 +8,7 @@ module as os.path.
import os
import stat
import string
-
+import copy
# Normalize the case of a pathname and map slashes to backslashes.
# Other normalizations (such as optimizing '../' away) are not done
@@ -158,14 +158,17 @@ def dirname(p):
def commonprefix(m):
"Given a list of pathnames, returns the longest common leading component"
if not m: return ''
- prefix = m[0]
- for item in m:
+ n = copy.copy(m)
+ for i in range(len(n)):
+ n[i] = n[i].split(os.sep)
+ prefix = n[0]
+ for item in n:
for i in range(len(prefix)):
if prefix[:i+1] <> item[:i+1]:
prefix = prefix[:i]
if i == 0: return ''
break
- return prefix
+ return os.sep.join(prefix)
# Get size, mtime, atime of files.