bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760)

This commit is contained in:
Pablo Galindo 2019-06-03 08:34:20 +01:00 committed by GitHub
parent d9677f36fe
commit 8565f6b6db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 3 deletions

View file

@ -3398,7 +3398,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n)
}
else {
ch = CHILD(ann, 3);
if (TYPE(ch) == testlist) {
if (TYPE(ch) == testlist_star_expr) {
expr3 = ast_for_testlist(c, ch);
}
else {