micropython

Change of tests/compare.py

131:b62d613c3ca1
tests/compare.py
     1.1 --- a/tests/compare.py	Sat Aug 23 21:57:29 2008 +0200
     1.2 +++ b/tests/compare.py	Sat Aug 23 22:32:17 2008 +0200
     1.3 @@ -4,16 +4,6 @@
     1.4  b = 2
     1.5  c = 3
     1.6  
     1.7 -class X:
     1.8 -    def __contains__(self, other):
     1.9 -        return 1
    1.10 -
    1.11  a < b < c
    1.12  
    1.13 -x = X()
    1.14 -
    1.15 -a == x != b
    1.16 -a is x is not b
    1.17 -a in x
    1.18 -
    1.19  # vim: tabstop=4 expandtab shiftwidth=4