DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / float / complex_reverse_op.py
12345678910
# test complex interacting with special reverse methods class A: def __radd__(self, x): print("__radd__") return 2 print(1j + A())