Home
last modified time | relevance | path

Searched refs:PyAST_FromNode (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dast.h7 PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
/external/python/cpython3/Include/
Dast.h8 PyAPI_FUNC(mod_ty) PyAST_FromNode(
/external/python/cpython2/Python/
Dpythonrun.c1488 mod = PyAST_FromNode(n, flags, filename, arena); in PyParser_ASTFromString()
1516 mod = PyAST_FromNode(n, flags, filename, arena); in PyParser_ASTFromFile()
Dast.c216 PyAST_FromNode(const node *n, PyCompilerFlags *flags, const char *filename, in PyAST_FromNode() function
Dcompile.c308 mod = PyAST_FromNode(n, NULL, filename, arena); in PyNode_Compile()
/external/python/cpython2/PC/os2emx/
Dpython27.def745 "PyAST_FromNode"
/external/python/cpython3/Python/
Dast.c879 PyAST_FromNode(const node *n, PyCompilerFlags *flags, const char *filename_str, in PyAST_FromNode() function
4353 mod = PyAST_FromNode(mod_n, &cf, "<fstring>", c->c_arena); in fstring_compile_expr()
Dcompile.c380 mod = PyAST_FromNode(n, NULL, filename, arena); in PyNode_Compile()
/external/python/cpython2/Modules/
Dparsermodule.c463 mod = PyAST_FromNode(self->st_node, &(self->st_flags), str, arena); in parser_compilest()