mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-28 14:25:43 +00:00
Fix dict spreading in dict literal
This commit is contained in:
parent
ac4d3c076c
commit
581f6e176c
4 changed files with 124 additions and 37 deletions
|
@ -195,7 +195,7 @@ pub enum ExprKind<U = ()> {
|
|||
orelse: Box<Expr<U>>,
|
||||
},
|
||||
Dict {
|
||||
keys: Vec<Expr<U>>,
|
||||
keys: Vec<Option<Expr<U>>>,
|
||||
values: Vec<Expr<U>>,
|
||||
},
|
||||
Set {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue