You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code reproduces the problem both in 0.740 and current master. I run mypy with no options and no configuration.
a = 5
reveal_type(a)
reveal_type(5 ** 5)
reveal_type(5 ** a)
output:
% mypy mypy.py
mypy.py:2: note: Revealed type is 'builtins.int'
mypy.py:3: note: Revealed type is 'builtins.int'
mypy.py:4: note: Revealed type is 'Any'
The text was updated successfully, but these errors were encountered:
The following code reproduces the problem both in 0.740 and current master. I run mypy with no options and no configuration.
output:
The text was updated successfully, but these errors were encountered: