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

Lines Matching defs:compile

85     compile  Compile a pattern into a RegexObject.
110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X",
188 def compile(pattern, flags=0):
189 "Compile a regular expression pattern, returning a pattern object."
198 "Compile a template pattern, returning a pattern object"
222 _pattern_type = type(sre_compile.compile("", 0))
227 # internal: compile pattern
240 p = sre_compile.compile(pattern, flags)
249 # internal: compile replacement pattern
304 self.scanner = sre_compile.compile(p)