Home
last modified time | relevance | path

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

/third_party/python/Parser/
DPython.asdl72 | YieldFrom(expr value)
/third_party/python/Lib/test/
Dtest_unparse.py342 self.check_invalid(ast.YieldFrom(value=None))
Dtest_ast.py1396 self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")
/third_party/python/Include/internal/
Dpycore_ast.h415 } YieldFrom; member
/third_party/python/Python/
Dast_unparse.c829 APPEND_EXPR(e->v.YieldFrom.value, PR_TEST); in append_ast_yield_from()
Dast_opt.c550 CALL(astfold_expr, expr_ty, node_->v.YieldFrom.value); in astfold_expr()
Dast.c291 ret = validate_expr(state, exp->v.YieldFrom.value, Load); in validate_expr()
Dsymtable.c1666 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
DPython-ast.c2908 p->v.YieldFrom.value = value; in _PyAST_YieldFrom()
4400 value = ast2obj_expr(state, o->v.YieldFrom.value); in ast2obj_expr()
Dcompile.c5230 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr1()
/third_party/python/Doc/library/
Dast.rst355 :class:`Name`, a :class:`Lambda`, a :class:`Yield` or :class:`YieldFrom` node.
1738 YieldFrom(value)
1757 value=YieldFrom(
/third_party/python/Misc/
DHISTORY4597 - Issue #16546: Fix: ast.YieldFrom argument is now mandatory.