mirror of https://github.com/python/cpython
Manual backport of r78046.
This commit is contained in:
parent
c0fa2d24eb
commit
b8dbee38dd
|
@ -195,9 +195,9 @@ class MiscTest(unittest.TestCase):
|
||||||
def __lt__(self, other): return 0
|
def __lt__(self, other): return 0
|
||||||
def __gt__(self, other): return 0
|
def __gt__(self, other): return 0
|
||||||
def __eq__(self, other): return 0
|
def __eq__(self, other): return 0
|
||||||
def __le__(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 TestFailed, "This shouldn't happen"
|
def __ge__(self, other): raise test_support.TestFailed, "This shouldn't happen"
|
||||||
def __ne__(self, other): raise TestFailed, "This shouldn't happen"
|
def __ne__(self, other): raise test_support.TestFailed, "This shouldn't happen"
|
||||||
def __cmp__(self, other): raise RuntimeError, "expected"
|
def __cmp__(self, other): raise RuntimeError, "expected"
|
||||||
a = Misb()
|
a = Misb()
|
||||||
b = Misb()
|
b = Misb()
|
||||||
|
|
|
@ -127,7 +127,7 @@ class test__RandomNameSequence(TC):
|
||||||
if i == 20:
|
if i == 20:
|
||||||
break
|
break
|
||||||
except:
|
except:
|
||||||
failOnException("iteration")
|
self.failOnException("iteration")
|
||||||
|
|
||||||
test_classes.append(test__RandomNameSequence)
|
test_classes.append(test__RandomNameSequence)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue