Files
TencentOS-tiny/components/language/micropython/tests/float/complex_reverse_op.py
2022-09-29 12:10:37 +08:00

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())