blob: e8698a9b59a4d25fea271d485c369f233526344a [file] [log] [blame]
Neil Schemenauerfd288c72001-01-02 16:30:31 +00001import sys
2
3from test_support import *
4
5class Empty:
6 def __repr__(self):
7 return '<Empty>'
8
9class Coerce:
10 def __init__(self, arg):
11 self.arg = arg
12
13 def __repr__(self):
14 return '<Coerce %s>' % self.arg
15
16 def __coerce__(self, other):
17 if isinstance(other, Coerce):
18 return self.arg, other.arg
19 else:
Neil Schemenauere7e694f2001-01-03 02:13:26 +000020 return self.arg, other
Neil Schemenauerfd288c72001-01-02 16:30:31 +000021
22class Cmp:
23 def __init__(self,arg):
24 self.arg = arg
25
26 def __repr__(self):
27 return '<Cmp %s>' % self.arg
28
29 def __cmp__(self, other):
30 return cmp(self.arg, other)
31
32class RCmp:
33 def __init__(self,arg):
34 self.arg = arg
35
36 def __repr__(self):
37 return '<RCmp %s>' % self.arg
38
39 def __rcmp__(self, other):
40 return cmp(other, self.arg)
41
42
Neil Schemenauere7e694f2001-01-03 02:13:26 +000043candidates = [2, 2.0, 2L, 2+0j, [1], (3,), None, Empty(), Coerce(2),
44 Cmp(2.0), RCmp(2L)]
Neil Schemenauerfd288c72001-01-02 16:30:31 +000045
46def test():
47 for a in candidates:
48 for b in candidates:
Neil Schemenauerfd288c72001-01-02 16:30:31 +000049 try:
Neil Schemenauere7e694f2001-01-03 02:13:26 +000050 x = a == b
Neil Schemenauerfd288c72001-01-02 16:30:31 +000051 except:
Neil Schemenauere7e694f2001-01-03 02:13:26 +000052 print 'cmp(%s, %s) => %s' % (a, b, sys.exc_info()[0])
Neil Schemenauerfd288c72001-01-02 16:30:31 +000053 else:
Neil Schemenauere7e694f2001-01-03 02:13:26 +000054 if x:
55 print "%s == %s" % (a, b)
56 else:
57 print "%s != %s" % (a, b)
Neil Schemenauerfd288c72001-01-02 16:30:31 +000058
59test()