Raffaello Baluyot
Raffaello Baluyot
I currently patched the gridmap in my system with a cloudpickle version. If you like I can make a PR for it.
Has this been done? I think I can take a look at this since I also put the work around on my code.
Looks like there's a PR already (#1832), but was created a year ago and has not been merged. I'm keeping the PR for now.
I agree with your point that multiple inheritance and intersection types are indeed different, from a theoretical perspective. Which makes me think if we need a full intersection types in...
That's fair actually. And that seems to be more aligned with what's written in the `notes.txt` which is to follow the MRO for real classes, and actual intersection for `Protocol`s...
From what I understand, a inheritance based approach was also discussed in #38 and the current issue is how to resolve it with `Any`
Thanks for giving me a quick summary of what's been happening so far. The proposal on `Hashable` looks good to me as well. If I set `__hash__ = None` on...
It's interesting that the `__hash__` method is not looked up by the MRO. I can't find anything about it in the Python's data model documentation but is hashability intended to...
I do understand how `__eq__` and `__hash__` interacts. My question is about the `__hash__` not being resolved by the MRO.
Hello. I saw this from the jaxtyping PR. It looks like you are using `|` for `typing.Union` which is not supported in Python 3.9. Either you use the `typing.Union` or...