-
-
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
Remove non-existing _DT
from ordered dataclass
#18846
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
mypy/plugins/dataclasses.py
Outdated
and info.get("__eq__") is None | ||
or decorator_arguments["order"] | ||
): | ||
if decorator_arguments["eq"] and info.get("__eq__") is None: |
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.
Won't this still keep creating _DT
on @dataclass(eq=True)
? The problematic bit is actually creating a fake TypeVarExpr
and putting it in dataclass' symbol table.
Furthermore, this will actually break @dataclass(eq=False, order=True)
definitions, because below self._api.fail()
does not abort early, we'll still create methods referencing non-existent _DT
, maybe leading to some crashes down the road.
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.
Okay, I removed _DT
from @dataclass(eq=True)
.
But I don't actually understand about @dataclass(eq=False, order=True)
definitions, newbie in mypy:)
According to mypy_primer, this change doesn't affect type check results on a corpus of open source code. ✅ |
Okay, this typevar was stored in class' symbol table since #6515. The question is how come that all our tests pass with this (rather huge) block removed, and there are zero primer hits. Note that I feel like this will eventually fail in incremental mode, trying to consume existing |
(Explain how this PR changes mypy.)
Fixes #18811
Remove
_DT
attribute that does not exist in runtime from ordered dataclass.