summaryrefslogtreecommitdiff
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-08-03 07:30:12 +0000
committerGeorg Brandl <georg@python.org>2005-08-03 07:30:12 +0000
commit649f8e7de2ad8fc42748b56e8e64574478d2d7fe (patch)
tree740d59f0b6fa4754093eb7c2f4165688c4f68642 /Lib/macpath.py
parentb370059233f0833dc2768422aee93a728eebbf26 (diff)
downloadcpython-git-649f8e7de2ad8fc42748b56e8e64574478d2d7fe.tar.gz
patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc.
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index f50f66072d..dc7f753f02 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -175,14 +175,14 @@ def lexists(path):
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:
- for i in range(len(prefix)):
- if prefix[:i+1] != item[:i+1]:
- prefix = prefix[:i]
- if i == 0: return ''
- break
- return prefix
+ s1 = min(m)
+ s2 = max(m)
+ n = min(len(s1), len(s2))
+ for i in xrange(n):
+ if s1[i] != s2[i]:
+ return s1[:i]
+ return s1[:n]
+
def expandvars(path):
"""Dummy to retain interface-compatibility with other operating systems."""