-
-
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
New semantic analyzer: plugin generated methods are confused with user defined ones #6954
Comments
I think I am experiencing a related issue with mypy 0.910. Here is the offending code: from collections.abc import Set
from dataclasses import dataclass
@dataclass(order=True)
class MySet(Set):
pass And here are the errors it produces:
Setting
It also seems to be related to Any ideas what is happening here? |
Could you open a new issue? This is likely related to the typeshed definition for Set, so that's where I'd look. |
Should I open the new issue in the mypy repo or in the typeshed repo? |
Let's start with mypy and transfer to typeshed if we find a concrete problem in the stubs. |
This test case fails with new analyzer (note deferral):
with a bunch of errors
Setting priority to high because it is a flaw in basic plugin functionality.
The text was updated successfully, but these errors were encountered: