假设我有一本字典:
>>> d = {}
它有一个方法clear()
:
>>> d.clear
<built-in method clear of dict object at 0x7f209051c988>
...具有一个__hash__
属性:
>>> d.clear.__hash__
<method-wrapper '__hash__' of builtin_function_or_method object at 0x7f2090456288>
...这是可调用的:
>>> callable(d.clear.__hash__)
True
那为什么我不能散列呢?
>>> hash(d.clear)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'dict'
注意:我知道dict
对象是不可散列的——我很好奇为什么这个限制会扩展到它们的方法,尽管如上所述,它们似乎声称不是这样?