micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# test complex interacting with special reverse methods
|
||||
|
||||
|
||||
class A:
|
||||
def __radd__(self, x):
|
||||
print("__radd__")
|
||||
return 2
|
||||
|
||||
|
||||
print(1j + A())
|
Reference in New Issue
Block a user