diff --git a/meshmode/interop/__init__.py b/meshmode/interop/__init__.py index 1421458c45202e54811cd6529d08e1c3b68dcec7..2c1bf0727a0becb3a13d9d6dbad12b751d60db39 100644 --- a/meshmode/interop/__init__.py +++ b/meshmode/interop/__init__.py @@ -46,17 +46,6 @@ class ExternalDataHandler: def __init__(self, data): self.data = data - def __hash__(self): - return hash((type(self), self.data)) - - def __eq__(self, other): - return isinstance(other, type(self)) and \ - isinstance(self, type(other)) and \ - self.data == other.data - - def __neq__(self, other): - return not self.__eq__(other) - # }}}