Searched refs:YieldFrom (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Parser/ |
D | Python.asdl | 73 | YieldFrom(expr value)
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 286 } YieldFrom; member 560 #define YieldFrom(a0, a1, a2, a3) _Py_YieldFrom(a0, a1, a2, a3) macro
|
/external/python/cpython3/Python/ |
D | ast_unparse.c | 796 APPEND_EXPR(e->v.YieldFrom.value, PR_TEST); in append_ast_yield_from()
|
D | ast_opt.c | 572 CALL(astfold_expr, expr_ty, node_->v.YieldFrom.value); in astfold_expr()
|
D | symtable.c | 1443 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
|
D | Python-ast.c | 2030 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()
|
D | ast.c | 270 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()
|
D | compile.c | 4447 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr()
|
/external/python/cpython3/Lib/test/ |
D | test_ast.py | 921 self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4597 - Issue #16546: Fix: ast.YieldFrom argument is now mandatory.
|