Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h649 stmt_ty _PyAST_Return(expr_ty value, int lineno, int col_offset, int
/third_party/python/Grammar/
Dpython.gram392 | 'return' a=[star_expressions] { _PyAST_Return(a, EXTRA) }
/third_party/python/Python/
DPython-ast.c2040 _PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int in _PyAST_Return() function
6197 *out = _PyAST_Return(value, lineno, col_offset, end_lineno, in obj2ast_stmt()
/third_party/python/Parser/
Dparser.c8449 _res = _PyAST_Return ( a , EXTRA ); in return_stmt_rule()