Home
last modified time | relevance | path

Searched refs:_PyAST_YieldFrom (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h750 expr_ty _PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int
/third_party/python/Grammar/
Dpython.gram743 | 'yield' 'from' a=expression { _PyAST_YieldFrom(a, EXTRA) }
/third_party/python/Python/
DPython-ast.c2895 _PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int in _PyAST_YieldFrom() function
8776 *out = _PyAST_YieldFrom(value, lineno, col_offset, end_lineno, in obj2ast_expr()
/third_party/python/Parser/
Dparser.c16234 _res = _PyAST_YieldFrom ( a , EXTRA ); in yield_expr_rule()