Home
last modified time | relevance | path

Searched refs:SRE_FLAG_DOTALL (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/
Dsre_constants.py206 SRE_FLAG_DOTALL = 16 # treat target as a single string variable
249 f.write("#define SRE_FLAG_DOTALL %d\n" % SRE_FLAG_DOTALL)
Dre.py151 DOTALL = S = sre_compile.SRE_FLAG_DOTALL # make dot match newline
Dsre_compile.py133 if flags & SRE_FLAG_DOTALL:
Dsre_parse.py60 "s": SRE_FLAG_DOTALL,
/third_party/python/Modules/
Dsre_constants.h90 #define SRE_FLAG_DOTALL 16 macro
D_sre.c1310 {"re.DOTALL", SRE_FLAG_DOTALL}, in pattern_repr()