Manual backport of r78046.

This commit is contained in:
Georg Brandl 2010-02-07 11:54:01 +00:00
parent c0fa2d24eb
commit b8dbee38dd
2 changed files with 4 additions and 4 deletions

View File

@ -195,9 +195,9 @@ class MiscTest(unittest.TestCase):
def __lt__(self, other): return 0
def __gt__(self, other): return 0
def __eq__(self, other): return 0
def __le__(self, other): raise TestFailed, "This shouldn't happen"
def __ge__(self, other): raise TestFailed, "This shouldn't happen"
def __ne__(self, other): raise TestFailed, "This shouldn't happen"
def __le__(self, other): raise test_support.TestFailed, "This shouldn't happen"
def __ge__(self, other): raise test_support.TestFailed, "This shouldn't happen"
def __ne__(self, other): raise test_support.TestFailed, "This shouldn't happen"
def __cmp__(self, other): raise RuntimeError, "expected"
a = Misb()
b = Misb()

View File

@ -127,7 +127,7 @@ class test__RandomNameSequence(TC):
if i == 20:
break
except:
failOnException("iteration")
self.failOnException("iteration")
test_classes.append(test__RandomNameSequence)