-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dict unpacking with two unpacked arguments fails #2086
Comments
I just noticed that running mypy with |
It is, yeah -- the fast parser is generally more feature-complete and less buggy then the current parser. For example, The plan is to switch to using the fast parser by default and get rid of the current parser once we figure out how to get the fast parser (which is largely written in C) to compile on Windows. |
This can be closed once the fast parser is the default. |
I'm going to close this as a won't fix because the new parser will solve this and we're not going to put any work in the old parser/lexer. |
This is valid (and pretty usefull) syntax in python 3.5:
But mypy gives you an error:
Note that this is different than #704 as it only describes a single unpacked argument. This is present in Mypy 0.4.4 as well as the git version as of today.
The text was updated successfully, but these errors were encountered: