Home
last modified time | relevance | path

Searched refs:PyAST_Compile (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dcompile.h32 PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
/external/python/cpython3/Include/
Dcompile.h65 #define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar) macro
/external/python/cpython2/Python/
Dpythonrun.c1382 co = PyAST_Compile(mod, filename, flags, arena); in run_mod()
1442 co = PyAST_Compile(mod, filename, flags, arena); in Py_CompileStringFlags()
Dcompile.c254 PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags, in PyAST_Compile() function
310 co = PyAST_Compile(mod, filename, NULL, arena); in PyNode_Compile()
Dbltinmodule.c536 result = (PyObject*)PyAST_Compile(mod, filename, in builtin_compile()
Dimport.c904 co = PyAST_Compile(mod, pathname, NULL, arena); in parse_source_module()
/external/python/cpython2/PC/os2emx/
Dpython27.def868 "PyAST_Compile"
/external/python/cpython3/Python/
Dcompile.c403 co = PyAST_Compile(mod, filename, NULL, arena); in PyNode_Compile()
6071 #undef PyAST_Compile
6073 PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags, in PyAST_Compile() function
/external/python/cpython2/Modules/
Dparsermodule.c465 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena); in parser_compilest()
/external/python/cpython2/Doc/whatsnew/
D2.5.rst2123 This AST can then be turned into a code object by :c:func:`PyAST_Compile`. For
/external/python/cpython3/Doc/whatsnew/
D2.5.rst2124 This AST can then be turned into a code object by :c:func:`PyAST_Compile`. For