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

More helpful type guards #14238

Merged
merged 9 commits into from
Jan 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test-data/unit/check-typeguard.test
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ if typeguard(n):
reveal_type(n)
[builtins fixtures/tuple.pyi]
[out]
main:4: error: invalid syntax
main:4: error: invalid syntax; you likely need to run mypy using Python 3.8 or newer
A5rocks marked this conversation as resolved.
Show resolved Hide resolved
[out version>=3.8]
main:9: note: Revealed type is "builtins.int"

Expand All @@ -655,7 +655,7 @@ if typeguard(x=(n := cast(object, "hi"))):
reveal_type(n)
[builtins fixtures/tuple.pyi]
[out]
main:8: error: invalid syntax
main:8: error: invalid syntax; you likely need to run mypy using Python 3.8 or newer
[out version>=3.8]
main:9: note: Revealed type is "builtins.int"

Expand Down