Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bebcd18

Browse files
committed
merge 3.2
2 parents 7e0dbfb + bc4665e commit bebcd18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/ast.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ seq_for_testlist(struct compiling *c, const node *n)
11531153
}
11541154

11551155
static arg_ty
1156-
compiler_arg(struct compiling *c, const node *n)
1156+
ast_for_arg(struct compiling *c, const node *n)
11571157
{
11581158
identifier name;
11591159
expr_ty annotation = NULL;
@@ -1367,7 +1367,7 @@ ast_for_arguments(struct compiling *c, const node *n)
13671367
"non-default argument follows default argument");
13681368
return NULL;
13691369
}
1370-
arg = compiler_arg(c, ch);
1370+
arg = ast_for_arg(c, ch);
13711371
if (!arg)
13721372
return NULL;
13731373
asdl_seq_SET(posargs, k++, arg);

0 commit comments

Comments
 (0)