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 4905e80 commit defa04eCopy full SHA for defa04e
1 file changed
Python/ast.c
@@ -1889,9 +1889,7 @@ ast_for_expr(struct compiling *c, const node *n)
1889
break;
1890
1891
case star_expr:
1892
- if (TYPE(CHILD(n, 0)) == STAR)
1893
- return ast_for_starred(c, n);
1894
- /* Fall through to generic case. */
+ return ast_for_starred(c, n);
1895
/* The next five cases all handle BinOps. The main body of code
1896
is the same in each case, but the switch turned inside out to
1897
reuse the code for each type of operator.
0 commit comments