curse(str, '__eq__', str.__ne__)
fails with:
...
File ".../python3.6/site-packages/forbiddenfruit/__init__.py", line 425, in curse
_curse_special(klass, attr, value)
File ".../python3.6/site-packages/forbiddenfruit/__init__.py", line 332, in _curse_special
tp_as_name, impl_method = override_dict[attr]
KeyError: '__eq__'
Also other dunder methods fails. e.g.:
curse(int, '__new__', <some other method>)
curse(float, '__dict__', <some other method>)