Home
last modified time | relevance | path

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

/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:
/external/python/cpython2/Lib/test/
Dtest_fnmatch.py8 _MAXCACHE, _cache, _purge)
82 for i in range(_MAXCACHE + 1):
85 self.assertLessEqual(len(_cache), _MAXCACHE)
/external/python/cpython3/Lib/
Dre.py270 _MAXCACHE = 512 variable
288 if len(_cache) >= _MAXCACHE:
297 @functools.lru_cache(_MAXCACHE)