micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
class E:
|
||||
def __repr__(self):
|
||||
return "E"
|
||||
|
||||
def __eq__(self, other):
|
||||
print('E eq', other)
|
||||
return 123
|
||||
|
||||
class F:
|
||||
def __repr__(self):
|
||||
return "F"
|
||||
|
||||
def __ne__(self, other):
|
||||
print('F ne', other)
|
||||
return -456
|
||||
|
||||
print(E() != F())
|
||||
print(F() != E())
|
||||
|
||||
tests = (None, 0, 1, 'a')
|
||||
|
||||
for val in tests:
|
||||
print('==== testing', val)
|
||||
print(E() == val)
|
||||
print(val == E())
|
||||
print(E() != val)
|
||||
print(val != E())
|
||||
print(F() == val)
|
||||
print(val == F())
|
||||
print(F() != val)
|
||||
print(val != F())
|
Reference in New Issue
Block a user