remove now useless __ne__

This commit is contained in:
Benjamin Peterson 2010-05-11 00:07:48 +00:00
parent 2b14676f0f
commit 899e9a0e7a

View file

@ -264,9 +264,6 @@ def __eq__(self, other):
return self._testMethodName == other._testMethodName
def __ne__(self, other):
return not self == other
def __hash__(self):
return hash((type(self), self._testMethodName))