Searched refs:_regexp_compile_cache (Results 1 – 1 of 1) sorted by relevance
434 _regexp_compile_cache = {} variable509 if pattern not in _regexp_compile_cache:510 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)511 return _regexp_compile_cache[pattern].match(s)527 if pattern not in _regexp_compile_cache:528 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)529 return _regexp_compile_cache[pattern].sub(rep, s)534 if pattern not in _regexp_compile_cache:535 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)536 return _regexp_compile_cache[pattern].search(s)