Thanks to visit codestin.com Credit goes to github.com
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.
1 parent ef87f06 commit bc4665eCopy full SHA for bc4665e
1 file changed
Python/ast.c
@@ -645,7 +645,7 @@ seq_for_testlist(struct compiling *c, const node *n)
645
}
646
647
static arg_ty
648
-compiler_arg(struct compiling *c, const node *n)
+ast_for_arg(struct compiling *c, const node *n)
649
{
650
identifier name;
651
expr_ty annotation = NULL;
@@ -859,7 +859,7 @@ ast_for_arguments(struct compiling *c, const node *n)
859
"non-default argument follows default argument");
860
return NULL;
861
862
- arg = compiler_arg(c, ch);
+ arg = ast_for_arg(c, ch);
863
if (!arg)
864
865
asdl_seq_SET(posargs, k++, arg);
0 commit comments