我使用SWIG将我们的C ++库暴露给Python。出于性能原因,我有兴趣切换一些包装以使用SWIG的-builtin选项,这将删除Python代理对象的层。
但是,包装类不能再用在Python集中,也不能用作Python dicts中的键。这是不可能的!
>>> wrapped_object = WrappedObject()
>>> hash(wrapped_object)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'structure.WrappedObject'
我为我的班级定义了__hash__()
,__eq__()
和__ne__()
方法。
>>> wrapped_object.__hash__
<built-in method __hash__ of structure.WrappedObject object at 0x7fa9e0e4c378>
>>> wrapped_object.__eq__
<method-wrapper '__eq__' of structure.WrappedObject object at 0x7fa9e0e4c378>
我需要做些什么来使这个课程可以播放?
答案 0 :(得分:1)
对于Builtin对象,Python使用哈希槽(Python docs link)而不是__hash__()
方法。因此,新的内置对象需要填充哈希槽。这需要一个特定的方法原型。
在WrappedObject C ++文件中:
long WrappedObject::getHash();
在SWIG包装器定义文件中:
%rename(__hash__) WrappedObject::getHash;
%feature("python:slot", "tp_hash", functype="hashfunc") WrappedObject::getHash;
这对我有用!