From: Skip Montanaro Date: Sun, 16 Jul 2000 16:52:45 +0000 (+0000) Subject: split and join on "/" in commonprefix X-Git-Tag: v2.0b1~809 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a924bb1ad2853bdf24a57bd25a011d5b43fac981;p=python split and join on "/" in commonprefix --- diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 1be5d29011..2f7780c816 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -120,11 +120,8 @@ def commonprefix(m): if not m: return '' n = m[:] for i in range(len(n)): - n[i] = n[i].split(os.sep) - # if os.sep didn't have any effect, try os.altsep - if os.altsep and len(n[i]) == 1: - n[i] = n[i].split(os.altsep) - + n[i] = n[i].split("/") + prefix = n[0] for item in n: for i in range(len(prefix)): @@ -132,7 +129,7 @@ def commonprefix(m): prefix = prefix[:i] if i == 0: return '' break - return os.sep.join(prefix) + return "/".join(prefix) # Get size, mtime, atime of files.