Home | History | Annotate | Download | only in python

Lines Matching refs:flags

910   def __init__(self, pattern, flags=0):
916 # flags passed to re.compile function as the second argument
917 flags: int
920 self.regex = re.compile(pattern, flags=flags)
933 if self.regex.flags:
934 s += ', flags=%d' % self.regex.flags