diff options
| author | Benjamin Peterson <benjamin@python.org> | 2010-05-11 00:07:48 (GMT) | 
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2010-05-11 00:07:48 (GMT) | 
| commit | 899e9a0e7a0e8cd93bc15e3b4a74c479b0de74cd (patch) | |
| tree | 4648d9d10272e6d1ec3ae4c748ad3d75ffed93c7 /Lib/unittest/case.py | |
| parent | 2b14676f0fa3123ebedd017e7241c812584529ec (diff) | |
| download | cpython-899e9a0e7a0e8cd93bc15e3b4a74c479b0de74cd.zip cpython-899e9a0e7a0e8cd93bc15e3b4a74c479b0de74cd.tar.gz cpython-899e9a0e7a0e8cd93bc15e3b4a74c479b0de74cd.tar.bz2  | |
remove now useless __ne__
Diffstat (limited to 'Lib/unittest/case.py')
| -rw-r--r-- | Lib/unittest/case.py | 3 | 
1 files changed, 0 insertions, 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))  | 
