mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
__coerce__ is gone, there's nothing to test.
This test now passes after removing refs to __coerce__.
This commit is contained in:
parent
13e57219d3
commit
cab1097798
1 changed files with 1 additions and 14 deletions
|
|
@ -6,19 +6,6 @@ class Empty:
|
|||
def __repr__(self):
|
||||
return '<Empty>'
|
||||
|
||||
class Coerce:
|
||||
def __init__(self, arg):
|
||||
self.arg = arg
|
||||
|
||||
def __repr__(self):
|
||||
return '<Coerce %s>' % self.arg
|
||||
|
||||
def __coerce__(self, other):
|
||||
if isinstance(other, Coerce):
|
||||
return self.arg, other.arg
|
||||
else:
|
||||
return self.arg, other
|
||||
|
||||
class Cmp:
|
||||
def __init__(self,arg):
|
||||
self.arg = arg
|
||||
|
|
@ -30,7 +17,7 @@ class Cmp:
|
|||
return cmp(self.arg, other)
|
||||
|
||||
class ComparisonTest(unittest.TestCase):
|
||||
set1 = [2, 2.0, 2L, 2+0j, Coerce(2), Cmp(2.0)]
|
||||
set1 = [2, 2.0, 2L, 2+0j, Cmp(2.0)]
|
||||
set2 = [[1], (3,), None, Empty()]
|
||||
candidates = set1 + set2
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue