Home
last modified time | relevance | path

Searched refs:PyCF_MASK (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dpythonrun.h10 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ macro
/external/python/cpython2/Python/
Dpythonrun.c1408 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
1478 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromString()
1506 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromFile()
Dbltinmodule.c491 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_DONT_IMPLY_DEDENT | PyCF_ONLY_AST)) in builtin_compile()
Dceval.c4166 const int compilerflags = codeflags & PyCF_MASK; in PyEval_MergeCompilerFlags()
Dcompile.c3786 flags |= (c->c_flags->cf_flags & PyCF_MASK); in compute_code_flags()
/external/python/cpython2/Modules/
Dparsermodule.c581 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK; in parser_do_parse()