Files
Core2forAWS-MicroPython/tests/feature_check/reverse_ops.py
T

10 lines
117 B
Python
Raw Normal View History

class Foo:
def __radd__(self, other):
pass
try:
5 + Foo()
except TypeError:
print("TypeError")