remove now useless __ne__

This commit is contained in:
Benjamin Peterson 2010-05-11 00:07:48 +00:00
parent 2b14676f0f
commit 899e9a0e7a
1 changed files with 0 additions and 3 deletions

View File

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