Home
last modified time | relevance | path

Searched refs:Starred (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Parser/
DPython.asdl84 | Starred(expr value, expr_context ctx)
Dpegen.c1828 return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), in _set_starred_context()
2522 return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type); in _PyPegen_get_invalid_target()
/third_party/python/Python/
Dast.c204 actual_ctx = exp->v.Starred.ctx; in validate_expr()
341 ret = validate_expr(state, exp->v.Starred.value, ctx); in validate_expr()
Dast_unparse.c809 APPEND_EXPR(e->v.Starred.value, PR_EXPR); in append_ast_starred()
Dast_opt.c578 CALL(astfold_expr, expr_ty, node_->v.Starred.value); in astfold_expr()
Dcompile.c3869 VISIT(c, expr, elt->v.Starred.value); in starunpack_helper()
3920 VISIT(c, expr, elt->kind != Starred_kind ? elt : elt->v.Starred.value); in assignment_helper()
4489 VISIT(c, expr, ((expr_ty)asdl_seq_GET(args, 0))->v.Starred.value); in compiler_call_helper()
5292 switch (e->v.Starred.ctx) { in compiler_visit_expr1()
Dsymtable.c1708 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
DPython-ast.c3120 p->v.Starred.value = value; in _PyAST_Starred()
3121 p->v.Starred.ctx = ctx; in _PyAST_Starred()
4544 value = ast2obj_expr(state, o->v.Starred.value); in ast2obj_expr()
4549 value = ast2obj_expr_context(state, o->v.Starred.ctx); in ast2obj_expr()
/third_party/python/Include/internal/
Dpycore_ast.h459 } Starred; member
/third_party/python/Doc/library/
Dast.rst323 .. class:: Starred(value, ctx)
339 Starred(
504 Starred(
/third_party/python/Lib/test/
Dtest_ast.py1464 left = ast.List([ast.Starred(ast.Name("x", ast.Load()), ast.Store())],
1557 [constant_true, ast.Starred(ast.Name('lol', ast.Load()), ast.Load())],
/third_party/python/Misc/NEWS.d/
D3.9.0a2.rst51 Fix the value of *end_col_offset* for Starred Expression AST nodes when they
/third_party/python/Lib/
Dast.py1463 and not any(isinstance(elt, Starred) for elt in slice_value.elts)