Home
last modified time | relevance | path

Searched refs:SRE_FLAG_DEBUG (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/
Dsre_constants.py209 SRE_FLAG_DEBUG = 128 # debugging variable
252 f.write("#define SRE_FLAG_DEBUG %d\n" % SRE_FLAG_DEBUG)
Dre.py155 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
Dsre_parse.py69 GLOBAL_FLAGS = SRE_FLAG_DEBUG | SRE_FLAG_TEMPLATE
964 if flags & SRE_FLAG_DEBUG:
Dsre_compile.py770 if flags & SRE_FLAG_DEBUG:
/external/python/cpython3/Modules/_xxtestfuzz/
Dfuzzer.c193 int SRE_FLAG_DEBUG = 0; variable
218 SRE_FLAG_DEBUG = PyLong_AsLong(debug_flag); in init_sre_compile()
234 flags &= ~SRE_FLAG_DEBUG; in fuzz_sre_compile()
/external/python/cpython3/Modules/
Dsre_constants.h93 #define SRE_FLAG_DEBUG 128 macro
D_sre.c1237 {"re.DEBUG", SRE_FLAG_DEBUG}, in pattern_repr()
/external/python/cpython2/Lib/
Dsre_constants.py214 SRE_FLAG_DEBUG = 128 # debugging variable
Dre.py130 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
Dsre_parse.py754 if flags & SRE_FLAG_DEBUG: