We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e0dbfb + bc4665e commit bebcd18Copy full SHA for bebcd18
1 file changed
Python/ast.c
@@ -1153,7 +1153,7 @@ seq_for_testlist(struct compiling *c, const node *n)
1153
}
1154
1155
static arg_ty
1156
-compiler_arg(struct compiling *c, const node *n)
+ast_for_arg(struct compiling *c, const node *n)
1157
{
1158
identifier name;
1159
expr_ty annotation = NULL;
@@ -1367,7 +1367,7 @@ ast_for_arguments(struct compiling *c, const node *n)
1367
"non-default argument follows default argument");
1368
return NULL;
1369
1370
- arg = compiler_arg(c, ch);
+ arg = ast_for_arg(c, ch);
1371
if (!arg)
1372
1373
asdl_seq_SET(posargs, k++, arg);
0 commit comments