Home | History | Annotate | Download | only in python2.7

Lines Matching full:_compile

137     return _compile(pattern, flags).match(string)
142 return _compile(pattern, flags).search(string)
151 return _compile(pattern, flags).sub(repl, string, count)
162 return _compile(pattern, flags).subn(repl, string, count)
167 return _compile(pattern, flags).split(string, maxsplit)
177 return _compile(pattern, flags).findall(string)
186 return _compile(pattern, flags).finditer(string)
190 return _compile(pattern, flags)
199 return _compile(pattern, flags|T)
226 def _compile(*key):
283 return _compile, (p.pattern, p.flags)
285 copy_reg.pickle(_pattern_type, _pickle, _compile)