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

Binder isn't cleared correctly with --scripts-are-modules #2523

Closed
rwbarton opened this issue Dec 3, 2016 · 1 comment
Closed

Binder isn't cleared correctly with --scripts-are-modules #2523

rwbarton opened this issue Dec 3, 2016 · 1 comment

Comments

@rwbarton
Copy link
Contributor

rwbarton commented Dec 3, 2016

Consider these two files:

# sam1.py
f = 'a'
f = 'b'

# sam2.py
f = 1
reveal_type(f)

Running python3 -m mypy --scripts-are-modules sam2.py sam1.py (note the order; it seems mypy processes the files in reverse order) produces

sam2.py:2: error: Revealed type is 'builtins.None'

I'm pretty sure this is due to old typestate left in the binder, because deleting the second assignment in sam1.py makes the problem go away. (And we don't populate the binder on the initial assignment to a variable: #2008.)

@rwbarton
Copy link
Contributor Author

rwbarton commented Dec 3, 2016

Oops, my bad. I was trying to reproduce an issue in Zulip, which is on mypy 0.4.5, so I had that version of mypy checked out. It appears that I already fixed this somehow in 3b92e79.

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

1 participant