summaryrefslogtreecommitdiff
path: root/Lib/fnmatch.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-02-17 01:33:37 -0800
committerRaymond Hettinger <python@rcn.com>2013-02-17 01:33:37 -0800
commitbabde14ac0d2a57d2dcaf0fed501e906ade7ff1d (patch)
tree528ad1da32719aa1a380e233aaf53f380b83bfb0 /Lib/fnmatch.py
parentdaaa76d95f22f8bb0750454201cbad2314dfc990 (diff)
downloadcpython-babde14ac0d2a57d2dcaf0fed501e906ade7ff1d.tar.gz
Set cache sizes to a power-of-two
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r--Lib/fnmatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py
index f446769b9f..6330b0cfda 100644
--- a/Lib/fnmatch.py
+++ b/Lib/fnmatch.py
@@ -35,7 +35,7 @@ def fnmatch(name, pat):
pat = os.path.normcase(pat)
return fnmatchcase(name, pat)
-@functools.lru_cache(maxsize=250, typed=True)
+@functools.lru_cache(maxsize=256, typed=True)
def _compile_pattern(pat):
if isinstance(pat, bytes):
pat_str = str(pat, 'ISO-8859-1')