1 2 3 4 5 6 7 8 9
class Foo: def __radd__(self, other): pass try: 5 + Foo() except TypeError: print("TypeError")