[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
- Previous message: [Python-checkins] r81075 - in python/branches/py3k: Modules/_cursesmodule.c
- Next message: [Python-checkins] r81077 - in python/trunk: configure configure.in
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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))
- Previous message: [Python-checkins] r81075 - in python/branches/py3k: Modules/_cursesmodule.c
- Next message: [Python-checkins] r81077 - in python/trunk: configure configure.in
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]