[Python-checkins] r81076 - python/branches/py3k/Lib/unittest/case.py (original) (raw)

benjamin.peterson python-checkins at python.org
Tue May 11 02:07:48 CEST 2010


Author: benjamin.peterson Date: Tue May 11 02:07:48 2010 New Revision: 81076

Log: remove now useless ne

Modified: python/branches/py3k/Lib/unittest/case.py

Modified: python/branches/py3k/Lib/unittest/case.py

--- python/branches/py3k/Lib/unittest/case.py (original) +++ python/branches/py3k/Lib/unittest/case.py Tue May 11 02:07:48 2010 @@ -264,9 +264,6 @@ return self._testMethodName == other._testMethodName - def ne(self, other): - return not self == other

 def __hash__(self):
     return hash((type(self), self._testMethodName))


More information about the Python-checkins mailing list