Home | History | Annotate | Download | only in tools

Lines Matching full:_regexp_compile_cache

351 _regexp_compile_cache = {}
418 if not pattern in _regexp_compile_cache:
419 _regexp_compile_cache
420 return _regexp_compile_cache[pattern].match(s)
425 if not pattern in _regexp_compile_cache:
426 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
427 return _regexp_compile_cache[pattern].search(s)