-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Mypy incorrectly warns when passing literals as kwarg keywords #10023
Comments
Arguably this should still be a (different) error, because the |
@JelleZijlstra Yes. This should be fine, I think: from typing import Any, Dict, Literal
kw: Dict[Literal["a", "b"], Any]
def func(a=None, b=None):
pass
func(**kw) |
Hey @JukkaL I want to work on this. Can you please assign it to me? |
@vickyhuo Done! |
Can I work on it in the future? |
still it having a problem |
I believe the problem is in subtype check presented below: This case is not considered as subtype:
However this one is:
The negative result of first presented subtype check leads to not considering |
Hi @kamilturek, I believe that is the problem as well. I'm currently still working on a fix |
Sounds like this is just another symptom of Mapping not being covariant in its key type |
@hauntsaninja What's the reason of this? |
It's unsafe, see python/typing#445 |
Reading through this issue, I was trying to figure out if the issue was that from typing import Any, Dict, Literal
kw: Dict[Literal["a", "b"], Any]
kw = {"a": 1, "b": 2} # Expected type 'dict[Literal["a", "b"], Any]', got 'dict[str, int]' instead
def func(a, b):
pass
func(**kw) Seems to echo @kamilturek's discovery in the debugger. |
Hi, |
Looks like #10237 is a PR trying to solve this Perhaps one way to help is to help review 10237 - by reading the code - and checking it out and running it to double check that it fixes the issue. I know the maintainers appreciate when folks do code review. In case you're not familiar - github renders this in the header with "may be fixed by" - |
Note this also happens with classes inheriting from |
Bug Report
Leads to
https://mypy-play.net/?mypy=latest&python=3.9&gist=582cf5e8c0a6e6a5881d391da64e1455
Expected Behavior
Expect this to be allowable - as these literals count as strings
The text was updated successfully, but these errors were encountered: