Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dcodeop.py66 PyCF_DONT_IMPLY_DEDENT = 0x200 # Matches pythonrun.h variable
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
130 self.flags = PyCF_DONT_IMPLY_DEDENT
/external/python/cpython3/Lib/
Dcodeop.py66 PyCF_DONT_IMPLY_DEDENT = 0x200 # Matches pythonrun.h variable
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
130 self.flags = PyCF_DONT_IMPLY_DEDENT
/external/python/cpython3/Lib/test/
Dtest_codeop.py8 from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
42 expected = compile(str, "<input>", symbol, PyCF_DONT_IMPLY_DEDENT)
66 PyCF_DONT_IMPLY_DEDENT))
69 PyCF_DONT_IMPLY_DEDENT))
/external/python/cpython2/Lib/test/
Dtest_codeop.py8 from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
42 expected = compile(str, "<input>", symbol, PyCF_DONT_IMPLY_DEDENT)
66 PyCF_DONT_IMPLY_DEDENT))
69 PyCF_DONT_IMPLY_DEDENT))
/external/python/cpython3/Include/
Dcompile.h22 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
/external/python/cpython2/Include/
Dpythonrun.h15 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
/external/python/cpython3/Python/
Dpythonrun.c155 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) in PARSER_FLAGS()
167 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
Dbltinmodule.c813 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_DONT_IMPLY_DEDENT | PyCF_ONLY_AST)) in builtin_compile_impl()
/external/python/cpython2/Python/
Dpythonrun.c800 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
806 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
Dbltinmodule.c492 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_DONT_IMPLY_DEDENT | PyCF_ONLY_AST)) in builtin_compile()