mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
#3219 repeated keyword arguments aren't allowed in function calls anymore
This commit is contained in:
parent
1f40c8a8d7
commit
175e4d9663
3 changed files with 19 additions and 0 deletions
10
Python/ast.c
10
Python/ast.c
|
@ -1912,6 +1912,8 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func)
|
|||
else {
|
||||
keyword_ty kw;
|
||||
identifier key;
|
||||
int k;
|
||||
char *tmp;
|
||||
|
||||
/* CHILD(ch, 0) is test, but must be an identifier? */
|
||||
e = ast_for_expr(c, CHILD(ch, 0));
|
||||
|
@ -1933,6 +1935,14 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func)
|
|||
key = e->v.Name.id;
|
||||
if (!forbidden_check(c, CHILD(ch, 0), PyBytes_AS_STRING(key)))
|
||||
return NULL;
|
||||
for (k = 0; k < nkeywords; k++) {
|
||||
tmp = PyString_AS_STRING(
|
||||
((keyword_ty)asdl_seq_GET(keywords, k))->arg);
|
||||
if (!strcmp(tmp, PyString_AS_STRING(key))) {
|
||||
ast_error(CHILD(ch, 0), "keyword argument repeated");
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
e = ast_for_expr(c, CHILD(ch, 2));
|
||||
if (!e)
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue