Home
last modified time | relevance | path

Searched refs:_MAXCACHE (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_fnmatch.py6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge
62 for i in range(_MAXCACHE + 1):
65 self.assertLessEqual(len(_cache), _MAXCACHE)
/external/python/cpython2/Lib/
Dfnmatch.py18 _MAXCACHE = 100 variable
54 if len(_cache) >= _MAXCACHE:
80 if len(_cache) >= _MAXCACHE:
Dre.py228 _MAXCACHE = 100 variable
253 if len(_cache) >= _MAXCACHE:
274 if len(_cache_repl) >= _MAXCACHE: