Searched refs:Starred (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Parser/ |
D | Python.asdl | 84 | Starred(expr value, expr_context ctx)
|
D | pegen.c | 1828 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/ |
D | ast.c | 204 actual_ctx = exp->v.Starred.ctx; in validate_expr() 341 ret = validate_expr(state, exp->v.Starred.value, ctx); in validate_expr()
|
D | ast_unparse.c | 809 APPEND_EXPR(e->v.Starred.value, PR_EXPR); in append_ast_starred()
|
D | ast_opt.c | 578 CALL(astfold_expr, expr_ty, node_->v.Starred.value); in astfold_expr()
|
D | compile.c | 3869 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()
|
D | symtable.c | 1708 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
|
D | Python-ast.c | 3120 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/ |
D | pycore_ast.h | 459 } Starred; member
|
/third_party/python/Doc/library/ |
D | ast.rst | 323 .. class:: Starred(value, ctx) 339 Starred( 504 Starred(
|
/third_party/python/Lib/test/ |
D | test_ast.py | 1464 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/ |
D | 3.9.0a2.rst | 51 Fix the value of *end_col_offset* for Starred Expression AST nodes when they
|
/third_party/python/Lib/ |
D | ast.py | 1463 and not any(isinstance(elt, Starred) for elt in slice_value.elts)
|