Home
last modified time | relevance | path

Searched refs:YieldFrom (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Parser/
DPython.asdl73 | YieldFrom(expr value)
/external/python/cpython3/Include/
DPython-ast.h286 } YieldFrom; member
560 #define YieldFrom(a0, a1, a2, a3) _Py_YieldFrom(a0, a1, a2, a3) macro
/external/python/cpython3/Python/
Dast_unparse.c796 APPEND_EXPR(e->v.YieldFrom.value, PR_TEST); in append_ast_yield_from()
Dast_opt.c572 CALL(astfold_expr, expr_ty, node_->v.YieldFrom.value); in astfold_expr()
Dsymtable.c1443 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
DPython-ast.c2030 YieldFrom(expr_ty value, int lineno, int col_offset, PyArena *arena) in YieldFrom() function
2042 p->v.YieldFrom.value = value; in YieldFrom()
3242 value = ast2obj_expr(o->v.YieldFrom.value); in ast2obj_expr()
6433 *out = YieldFrom(value, lineno, col_offset, arena); in obj2ast_expr()
Dast.c270 return validate_expr(exp->v.YieldFrom.value, Load); in validate_expr()
2679 return YieldFrom(exp, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_expr()
Dcompile.c4447 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr()
/external/python/cpython3/Lib/test/
Dtest_ast.py921 self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")
/external/python/cpython3/Misc/
DHISTORY4597 - Issue #16546: Fix: ast.YieldFrom argument is now mandatory.