Searched refs:PyCF_DONT_IMPLY_DEDENT (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Lib/ |
D | codeop.py | 66 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/ |
D | codeop.py | 67 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/ |
D | test_codeop.py | 8 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/ |
D | test_codeop.py | 10 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/ |
D | compile.h | 28 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro 34 PyCF_TYPE_COMMENTS | PyCF_DONT_IMPLY_DEDENT)
|
/external/python/cpython2/Include/ |
D | pythonrun.h | 15 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 800 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \ 806 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
|
D | bltinmodule.c | 492 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_DONT_IMPLY_DEDENT | PyCF_ONLY_AST)) in builtin_compile()
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 157 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/ |
D | pegen.c | 1036 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) { in compute_parser_flags()
|