mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 02:39:22 +00:00
Fix dict spreading in dict literal
This commit is contained in:
parent
163cb5cd67
commit
52d2e25601
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