-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
MappingProxyType cannot hash a hashable underlying mapping #87995
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
Comments
Objects of MappingProxyType do expose a __hash__() method, but if the underlying mapping is hashable, it still does not support hashing it. Example: Content of mp_hash.py: ------ from nocasedict import NocaseDict, HashableMixin
from types import MappingProxyType
class HashableDict(HashableMixin, NocaseDict):
"""A hashable dictionary"""
pass
hd = HashableDict({'a': 1, 'b': 2})
print("hash(hd): {}".format(hash(hd)))
mp = MappingProxyType(hd)
print("hash(mp): {}".format(hash(mp))) Running the mp_hash.py script: hash(hd): 3709951335832776636
Traceback (most recent call last):
File "/Users/maiera/Projects/Python/cpython/issues/mappingproxy/./mp_hash.py", line 14, in <module>
print("hash(mp): {}".format(hash(mp)))
TypeError: unhashable type: 'mappingproxy' There are use cases where a function wants to return an immutable view on an internal dictionary, and the caller of the function should be able to use the returned object like a dictionary, except that it is read-only. Note there is https://bugs.python.org/issue31209 on the inability to pickle MappingProxyType objects which was closed without adding the capability. That would fall under the same argument. |
Serhiy, what do you think? Would it make sense to pass through the underlying hash? I don't think there is much use for this but don't see any particular reason to block it. |
Perhaps MappingProxyType is unhashable by accident. It implements __eq__, and it makes it unhashable by default. And nobody made request for this feature before. I think that implementing __hash__ would not make anything wrong. |
But there is an issue with comparison implementation in MappingProxyType (see bpo-43838). Resolving that issue can affect the decision about hashability. There should be always true the following predicate: if x == y then hash(x) == hash(y). |
The issue #88004 (bpo-43838) was already closed with reasoning:
I do not se a reason why not allow the hashing. Recently I needed to collect a set of small unique dict objects. It is a pity that I could not utilize |
This is now fixed. Thanks, Serhiy! ✨ 🍰 ✨ |
Does this mean that this should no longer issue an "unhashable type" TypeError?
Or is this feature indeed coming as of python 3.12? |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: