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.py67 PyCF_DONT_IMPLY_DEDENT = 0x200 # Matches pythonrun.h variable
111 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
140 self.flags = 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/Lib/test/
Dtest_codeop.py10 from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
43 expected = compile(str, "<input>", symbol, PyCF_DONT_IMPLY_DEDENT)
67 PyCF_DONT_IMPLY_DEDENT))
70 PyCF_DONT_IMPLY_DEDENT))
/external/python/cpython3/Include/
Dcompile.h28 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
34 PyCF_TYPE_COMMENTS | PyCF_DONT_IMPLY_DEDENT)
/external/python/cpython2/Include/
Dpythonrun.h15 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
/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()
/external/python/cpython3/Python/
Dpythonrun.c157 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) in PARSER_FLAGS()
171 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
/external/python/cpython3/Parser/pegen/
Dpegen.c1036 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) { in compute_parser_flags()