Searched refs:SRE_FLAG_DOTALL (Results 1 - 11 of 11) sorted by relevance

/external/python/cpython2/Modules/
H A Dsre_constants.h81 #define SRE_FLAG_DOTALL 16 macro
/external/python/cpython3/Modules/
H A Dsre_constants.h82 #define SRE_FLAG_DOTALL 16 macro
H A D_sre.c1354 {"re.DOTALL", SRE_FLAG_DOTALL},
/external/python/cpython2/Lib/
H A Dsre_constants.py211 SRE_FLAG_DOTALL = 16 # treat target as a single string variable
254 f.write("#define SRE_FLAG_DOTALL %d\n" % SRE_FLAG_DOTALL)
H A Dre.py125 S = DOTALL = sre_compile.SRE_FLAG_DOTALL # make dot match newline
H A Dsre_compile.py110 if flags & SRE_FLAG_DOTALL:
H A Dsre_parse.py58 "s": SRE_FLAG_DOTALL,
/external/python/cpython3/Lib/
H A Dsre_constants.py169 SRE_FLAG_DOTALL = 16 # treat target as a single string variable
212 f.write("#define SRE_FLAG_DOTALL %d\n" % SRE_FLAG_DOTALL)
H A Dre.py148 DOTALL = sre_compile.SRE_FLAG_DOTALL # make dot match newline
H A Dsre_compile.py111 if flags & SRE_FLAG_DOTALL:
H A Dsre_parse.py60 "s": SRE_FLAG_DOTALL,

Completed in 843 milliseconds