-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Recognizing wrapped classes as supporting a Protocol #6568
Comments
This can be supported by just adding |
I'm not 100% sure what you mean with adding the symbol to the plugin table, do you mean this? @dataclass
class A:
__dataclass_fields__: Dict Because that does fix it without side effects, since the dataclass wrapper just overrides it. Then again, once I start adding fields to my dataclasses only to fulfill a protocol I might as well inherit from a classic no-op interface class. Low prio is what I think as well, I'll look if I can manage to write a proper fix. |
You misread what I wrote, I meant fixing this in mypy plugin for dataclasses (dataclasses in mypy are supported by a bundled/builtin plugin). |
I see, thanks for the info =) |
So we are talking about I would like to have that fixed because I see no other reliable way of type hinting data classes. |
Yes.
Please go ahead! If you feel stuck, feel free to ask here or on Gitter. |
I will certainly have some questions, thanks :) For now, in order to leave it commented here, I managed to track the type checking to the The function call that isn't returning what we expect in order to validate the protocol is at subtype = find_member(member, left, left) Where member is the attribute we are checking (i.e.,
def get_method(self, name: str) -> Optional[FuncBase]:
for cls in self.mro:
if name in cls.names:
node = cls.names[name].node
if isinstance(node, FuncBase):
return node
else:
return None Where:
Given Thoughts here so far? |
Yes, we already add |
It seems I was following the wrong thread there 😅 Ended up at the Gonna go for the plugin now, thanks |
How does |
For instance/class attributes, |
That makes sense, thanks! Aren't we supposed to have some sort of |
No, just use |
I couldn't tell if there was any progress on this so I attempted solution. It seems to work, but I'm sure I'm missing some things. My solution was to add the following to the DataclassTransformer.transform method
I tried to give dataclass_fields a type but couldn't get the syntax of Any / all comments are appreciated. |
Sorry for the lack of update, got caught up in a series of other stuff at the second semester of 2019. |
@ilevkivskyi is what @amosson has written right? Any comments? I would like the help fix this, but unsure how to proceed. @amosson can you create a PR or fork? and we will work on this. |
This sounds reasonable. Note there is a draft PR #8578, but I don't know if the author is still interested. |
I have been waiting on a fix for this for a while. Is there anything we can do to get #8578 moving again? |
I would like to see this resolved as well. I left some comments addressing the outstanding change requests on #8578, hopefully this would unblock the author. Though it looks like he will need to address some merge conflicts as well. If the author is unresponsive, is it good practice to create a duplicate PR with his changes? |
tkukushkin updated the branch and fixed the failing tests last week. Its just waiting on a review from @JelleZijlstra. |
Blocking issue resolved by this update to mypy python/mypy#6568 python/mypy#8578 we can now check that a DataClass object conforms to our ConfigProtocol Protocol, allowing us to pass ally mypy checks.
Blocking issue resolved by this update to mypy python/mypy#6568 python/mypy#8578 we can now check that a DataClass object conforms to our ConfigProtocol Protocol, allowing us to pass ally mypy checks.
Hi! It seems to have broken in the version 0.991 |
I think you'll need to specify it as a ClassVar |
It works. Thank you! class DataClassProtocol(Protocol):
__dataclass_fields__: ClassVar[dict] |
* Auto-update pre-commit hooks * Improve dataclass protocol. noqa lazy import code See python/mypy#6568 (comment) Co-authored-by: Jakub Bachurski <kbachurski@gmail.com>
When running mypy on this code, I'd expect no warning, but I get
While checking for
__dataclass_fields__
might not look like the best thing to go for, it's whatdataclasses.is_dataclass
checks for as well, so this seems like the most reliable condition right now.I'd assume it happens because the dataclass-wrapper adds this attribute, and mypy only checks the class definition itself. Can this be fixed?
The text was updated successfully, but these errors were encountered: