summaryrefslogtreecommitdiffstats
path: root/Lib/fnmatch.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-06-06 06:24:38 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-06-06 06:24:38 (GMT)
commitb5d4d2a7d53f8c2926fd3004aeba0b8b38a3d111 (patch)
treef0a72d769fd1ecb88bbd37f5d89be2413479d140 /Lib/fnmatch.py
parent3d10b34b9c027d1e1c5613a4b1d80be4d31fb47a (diff)
downloadcpython-b5d4d2a7d53f8c2926fd3004aeba0b8b38a3d111.zip
cpython-b5d4d2a7d53f8c2926fd3004aeba0b8b38a3d111.tar.gz
cpython-b5d4d2a7d53f8c2926fd3004aeba0b8b38a3d111.tar.bz2
Patch #409973: Speedup glob.glob, add fnmatch.filter.
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r--Lib/fnmatch.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py
index 182a9ef..da0bb34 100644
--- a/Lib/fnmatch.py
+++ b/Lib/fnmatch.py
@@ -37,6 +37,26 @@ def fnmatch(name, pat):
pat = os.path.normcase(pat)
return fnmatchcase(name, pat)
+def filter(names, pat):
+ """Return the subset of the list NAMES that match PAT"""
+ import os,posixpath
+ result=[]
+ pat=os.path.normcase(pat)
+ if not _cache.has_key(pat):
+ res = translate(pat)
+ _cache[pat] = re.compile(res)
+ match=_cache[pat].match
+ if os.path is posixpath:
+ # normcase on posix is NOP. Optimize it away from the loop.
+ for name in names:
+ if match(name):
+ result.append(name)
+ else:
+ for name in names:
+ if match(os.path.normcase(name)):
+ result.append(name)
+ return result
+
def fnmatchcase(name, pat):
"""Test whether FILENAME matches PATTERN, including case.