Skip to content
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

Type errors using (x, _, _) = (1, 2, "3") #1649

Closed
timabbott opened this issue Jun 4, 2016 · 3 comments
Closed

Type errors using (x, _, _) = (1, 2, "3") #1649

timabbott opened this issue Jun 4, 2016 · 3 comments

Comments

@timabbott
Copy link

It's a common pattern to use assignment to _ in code to ignore variables that aren't used, and mypy doesn't support that:

/home/tabbott/foo.py:2: error: Incompatible types in assignment (expression has type "str", variable has type "int")

In my real code the usage looks more like this:

for (email, _, _, _) in users:                                                                                                                                     
    ...

Not sure whether the right answer is to change the code, but I think I'd flag this as an interesting case that may be somewhat common.

@gvanrossum
Copy link
Member

It's common enough to flag a few variable names as special as targets: _, __, and unused have all been recommended at various times.

@JelleZijlstra
Copy link
Member

This is a duplicate of #465.

@ilevkivskyi
Copy link
Member

Yes, it looks like this is a duplicate. I think it makes sense to only keep one of them open.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants