0c7354afaf
So they can be skipped if __rOP__'s are not supported on the target. Also fix the typo in the complex_special_methods.py filename. Signed-off-by: Damien George <damien@micropython.org>
11 lines
155 B
Python
11 lines
155 B
Python
# test complex interacting with special reverse methods
|
|
|
|
|
|
class A:
|
|
def __radd__(self, x):
|
|
print("__radd__")
|
|
return 2
|
|
|
|
|
|
print(1j + A())
|