diff options
author | Georg Brandl <georg@python.org> | 2005-08-03 07:30:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-03 07:30:12 (GMT) |
commit | 649f8e7de2ad8fc42748b56e8e64574478d2d7fe (patch) | |
tree | 740d59f0b6fa4754093eb7c2f4165688c4f68642 /Lib/ntpath.py | |
parent | b370059233f0833dc2768422aee93a728eebbf26 (diff) | |
download | cpython-649f8e7de2ad8fc42748b56e8e64574478d2d7fe.zip cpython-649f8e7de2ad8fc42748b56e8e64574478d2d7fe.tar.gz cpython-649f8e7de2ad8fc42748b56e8e64574478d2d7fe.tar.bz2 |
patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 649e424..35f266c 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -212,14 +212,13 @@ 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: - 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] # Get size, mtime, atime of files. |