-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Fix Incompatible return value type
error message for long tuple with Union
and non-Union
type mismatch
#18881
base: master
Are you sure you want to change the base?
Fix Incompatible return value type
error message for long tuple with Union
and non-Union
type mismatch
#18881
Conversation
This comment has been minimized.
This comment has been minimized.
test-data/unit/check-classes.test
Outdated
l: Union[str, None] | ||
|
||
@property | ||
def x(self) -> Tuple[str, str, str, str, str, str, str, str, str, str, str, str]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a testcase with the opposite direction (annotated with tuple of unions, returns tuple of props)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sterliakov Just to make sure I understand, you would like me to test this configuration ?
Or something else ?
class A:
a: str
b: str
c: str
d: str
e: str
f: str
g: str
h: str
i: str
j: str
k: str
l: str
@property
def x(self) -> Tuple[Union[str, int], Union[str, float], Union[str, None], Union[str, None], Union[str, None], Union[str, None], str, str, str, str, str, str]:
return (
self.a,
self.b,
self.c,
self.d,
self.e,
self.f,
self.g,
self.h,
self.i,
self.j,
self.k,
self.l,
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd love to see a test where the expected return type is wider than the actual return type, but the changed method is still triggered. In your example all items are assignable, so that method won't fire. Something like
class A:
a: str
b: str
c: str
d: str
e: str
f: str
g: str
h: str
i: str
j: str
k: str
l: str
@property
def x(self) -> Tuple[Union[str, int], Union[str, float], int, Union[str, None], Union[str, None], Union[str, None], str, str, str, str, str, str]:
return (
self.a,
self.b,
self.c,
self.d,
self.e,
self.f,
self.g,
self.h,
self.i,
self.j,
self.k,
self.l,
)
I adjusted the third union item to not be assignable, so that the comparator should be triggered (please check that it actually is). And why is x
a property, won't a simpler test without class do (and same question about the test you already added)?
a: str
b: str
c: str
d: str
e: str
f: str
g: str
h: str
i: str
j: str
k: str
l: str
x: Tuple[
Union[str, int], Union[str, float], int, Union[str, None], Union[str, None],
Union[str, None], str, str, str, str,
str, str,
] = (
a, b, c, d, e,
f, g, h, i, j,
k, l,
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And a nit: please move this to check-tuples.test
as the long tuple is the problem here, not the surrounding class.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the clarification and the provided example.
I adjusted the third union item to not be assignable, so that the comparator should be triggered (please check that it actually is).
It indeed triggers to relevant error. I also a Union
to modified code works as expected.
And why is
x
a property, won't a simpler test without class do (and same question about the test you already added)?
Beside beging the configuration where I first encountered the error message issue, your suggestion triggers an Incompatible types in assignment
(which works correctly) instead of a Incompatible return value type
.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Left a couple of style/scope comments on the testcases, the fix itself looks reasonable. I don't have write rights here, so you'll have to wait for someone else to approve&merge.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix! I agree with sterliakov's nit that the test belongs better in check-tuples.test
(but tests themselves are fine as is, just should be moved to different file)
According to mypy_primer, this change doesn't affect type check results on a corpus of open source code. ✅ |
With the following setup :
mypy outputs this error (you can visualize it in this playground):
when the expected error should be :
Found it is due to the
generate_incompatible_tuple_error
function from theMessageBuilder
class, not checkingUnion
and non-Union
mismatch type.So, I added another condition to increment the error count by ensuring that both type are not the same, instead of just verifying if they are subtype related.
I also wrote a new unit test for this case in
check-classes.test
in theProperty
section.As it is my first contribution, I'm not sure regarding the location nor the naming of this test, so feel free to suggest a better approach.