Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dcodeop.py67 PyCF_DONT_IMPLY_DEDENT = 0x200 # Matches pythonrun.h. variable
118 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
147 self.flags = PyCF_DONT_IMPLY_DEDENT
/third_party/python/Lib/test/
Dtest_codeop.py11 from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
44 expected = compile(str, "<input>", symbol, PyCF_DONT_IMPLY_DEDENT)
68 PyCF_DONT_IMPLY_DEDENT))
71 PyCF_DONT_IMPLY_DEDENT))
/third_party/python/Include/cpython/
Dcompile.h16 #define PyCF_DONT_IMPLY_DEDENT 0x0200 macro
22 PyCF_TYPE_COMMENTS | PyCF_DONT_IMPLY_DEDENT)
/third_party/python/Parser/
Dpegen.c1205 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) { in compute_parser_flags()