Home
last modified time | relevance | path

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

/external/python/cpython3/Parser/
DPython.asdl70 | YieldFrom(expr value)
/external/python/cpython3/Lib/test/
Dtest_unparse.py333 self.check_invalid(ast.YieldFrom(value=None))
Dtest_ast.py1332 self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")
/external/python/cpython3/Include/
DPython-ast.h309 } YieldFrom; member
611 #define YieldFrom(a0, a1, a2, a3, a4, a5) _Py_YieldFrom(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython3/Python/
Dast_unparse.c824 APPEND_EXPR(e->v.YieldFrom.value, PR_TEST); in append_ast_yield_from()
Dast_opt.c523 CALL(astfold_expr, expr_ty, node_->v.YieldFrom.value); in astfold_expr()
Dsymtable.c1601 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
Dast.c269 return validate_expr(exp->v.YieldFrom.value, Load); in validate_expr()
2910 return YieldFrom(exp, LINENO(n), n->n_col_offset, in ast_for_expr()
DPython-ast.c2891 YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int in YieldFrom() function
2904 p->v.YieldFrom.value = value; in YieldFrom()
4167 value = ast2obj_expr(state, o->v.YieldFrom.value); in ast2obj_expr()
7817 *out = YieldFrom(value, lineno, col_offset, end_lineno, end_col_offset, in obj2ast_expr()
Dcompile.c5044 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr1()
/external/python/cpython3/Doc/library/
Dast.rst349 :class:`Name`, a :class:`Lambda`, a :class:`Yield` or :class:`YieldFrom` node.
1364 YieldFrom(value)
1383 value=YieldFrom(
/external/python/cpython3/Misc/
DHISTORY4597 - Issue #16546: Fix: ast.YieldFrom argument is now mandatory.