Lines Matching refs:re
71 import re
873 cre = re.compile('.{%d}' % size, re.DOTALL)
1220 compile_flags = re.DOTALL # Allow dot to match \n
1222 compile_flags = compile_flags | re.IGNORECASE
1226 compiled_pattern_list.append(re.compile(p, compile_flags))
1231 elif type(p) is type(re.compile('')):
1242 StringType, EOF, a compiled re, or a list of any of those types.
1243 Strings will be compiled to re types. This returns the index into the
1269 re.MatchObject used in the re match will be in 'match'. If an error
1340 searching is faster than RE matching and it is possible to limit the
1696 match - the re.match object returned by a succesful re.search
1723 ss = [ (n,' %d: re.compile("%s")' % (n,str(s.pattern))) for n,s in self._searches]
1747 # length of a match, and the re module provides no help.