Bytes are already distinct from text, so typed=True isn't necessary.

This commit is contained in:
Raymond Hettinger 2011-10-20 09:42:05 -07:00
parent db84803562
commit ded203f7c9
1 changed files with 1 additions and 1 deletions

View File

@ -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=250)
def _compile_pattern(pat):
if isinstance(pat, bytes):
pat_str = str(pat, 'ISO-8859-1')