Searched refs:PyAST_Compile (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Include/ |
D | compile.h | 32 PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
|
/external/python/cpython3/Include/ |
D | compile.h | 65 #define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar) macro
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 1382 co = PyAST_Compile(mod, filename, flags, arena); in run_mod() 1442 co = PyAST_Compile(mod, filename, flags, arena); in Py_CompileStringFlags()
|
D | compile.c | 254 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()
|
D | bltinmodule.c | 536 result = (PyObject*)PyAST_Compile(mod, filename, in builtin_compile()
|
D | import.c | 904 co = PyAST_Compile(mod, pathname, NULL, arena); in parse_source_module()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 868 "PyAST_Compile"
|
/external/python/cpython3/Python/ |
D | compile.c | 403 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/ |
D | parsermodule.c | 465 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena); in parser_compilest()
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 2123 This AST can then be turned into a code object by :c:func:`PyAST_Compile`. For
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 2124 This AST can then be turned into a code object by :c:func:`PyAST_Compile`. For
|