fix: do not narrow expression type to TypeVar on equality comparison#21209
Open
ordinary9843 wants to merge 1 commit intopython:masterfrom
Open
fix: do not narrow expression type to TypeVar on equality comparison#21209ordinary9843 wants to merge 1 commit intopython:masterfrom
ordinary9843 wants to merge 1 commit intopython:masterfrom
Conversation
dc409ce to
ff07d6d
Compare
Contributor
|
Diff from mypy_primer, showing the effect of this PR on open source code: zulip (https://github.com/zulip/zulip)
- zerver/lib/validator.py:331: error: Redundant cast to "ResultT" [redundant-cast]
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a variable is compared with
==against a TypeVar operand, mypy was narrowing the left-hand variable to the TypeVar type. This caused false errors on subsequent operations — for example,x: intwould be narrowed toTafterassert x == y(wherey: T), causingx += 1to be flagged as unsupported operands.The regression was introduced in #20602, which routed
==throughnarrow_type_by_identity_equalitybut did not guard against TypeVar targets. A TypeVar represents an unknown concrete type at the call site, so narrowing based on it can only lose information, not gain it.This fix skips narrowing in
narrow_type_by_identity_equalitywhen the target type is aTypeVarLikeType. A more precise approach — intersecting the expression type with the TypeVar's upper bound — would require intersection type support and can be done as a follow-up.Fixes #21199