Searched refs:astfold_arg (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 410 static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 633 CALL_SEQ(astfold_arg, arg, node_->posonlyargs); in astfold_arguments() 634 CALL_SEQ(astfold_arg, arg, node_->args); in astfold_arguments() 635 CALL_OPT(astfold_arg, arg_ty, node_->vararg); in astfold_arguments() 636 CALL_SEQ(astfold_arg, arg, node_->kwonlyargs); in astfold_arguments() 638 CALL_OPT(astfold_arg, arg_ty, node_->kwarg); in astfold_arguments() 644 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arg() function
|