Skip to content
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
Comment thread
A5rocks marked this conversation as resolved.
Outdated
[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