From 899e9a0e7a0e8cd93bc15e3b4a74c479b0de74cd Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 11 May 2010 00:07:48 +0000 Subject: remove now useless __ne__ --- Lib/unittest/case.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index cbe8dcb..a072cf1 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -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)) -- cgit v0.12