Home | History | Annotate | Download | only in jinja2

Lines Matching refs:compile

32 whitespace_re = re.compile(r'\s+', re.U)
33 string_re = re.compile(r"('([^'\\]*(?:\\.[^'\\]*)*)'"
35 integer_re = re.compile(r'\d+')
40 compile('föö', '<unknown>', 'eval')
42 name_re = re.compile(r'\b[a-zA-Z_][a-zA-Z0-9_]*\b')
45 name_re = re.compile(r'[%s][%s]*' % (_stringdefs.xid_start,
48 float_re = re.compile(r'(?<!\.)\d+\.\d+')
49 newline_re = re.compile(r'(\r\n|\r|\n)')
134 operator_re = re.compile('(%s)' % '|'.join(re.escape(x) for x in
412 c = lambda x: re.compile(x, re.M | re.S)