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

Remove non-existing _DT from ordered dataclass #18846

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

guitvcer
Copy link

(Explain how this PR changes mypy.)

Fixes #18811

Remove _DT attribute that does not exist in runtime from ordered dataclass.

This comment has been minimized.

This comment has been minimized.

and info.get("__eq__") is None
or decorator_arguments["order"]
):
if decorator_arguments["eq"] and info.get("__eq__") is None:
Copy link
Collaborator

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.

Copy link
Author

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:)

Copy link
Contributor

According to mypy_primer, this change doesn't affect type check results on a corpus of open source code. ✅

@sterliakov
Copy link
Collaborator

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 attrs plugin and namedtuple semanal does the same, adding a typevar node to the modified class.

I feel like this will eventually fail in incremental mode, trying to consume existing __lt__ of some dataclass without corresponding TypeVar node. Using TypeVarType that doesn't have corresponding tvar node somewhere is just begging for trouble, but somehow I can't quickly create a reproducer that crashes readily. Can we really just get rid of it like this?..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

stubtest invents _DT attribute on dataclasses
3 participants