Home
last modified time | relevance | path

Searched refs:SRE_FLAG_VERBOSE (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Dsre_constants.py208 SRE_FLAG_VERBOSE = 64 # ignore whitespace and comments variable
251 f.write("#define SRE_FLAG_VERBOSE %d\n" % SRE_FLAG_VERBOSE)
Dsre_parse.py61 "x": SRE_FLAG_VERBOSE,
816 if (state.flags & SRE_FLAG_VERBOSE) and not verbose:
832 sub_verbose = ((verbose or (add_flags & SRE_FLAG_VERBOSE)) and
833 not (del_flags & SRE_FLAG_VERBOSE))
948 p = _parse_sub(source, state, flags & SRE_FLAG_VERBOSE, 0)
953 state.flags = flags | SRE_FLAG_VERBOSE
Dre.py152 VERBOSE = X = sre_compile.SRE_FLAG_VERBOSE # ignore whitespace and comments
/third_party/python/Modules/
Dsre_constants.h92 #define SRE_FLAG_VERBOSE 64 macro
D_sre.c1312 {"re.VERBOSE", SRE_FLAG_VERBOSE}, in pattern_repr()