In Python if I have
class Foo: def __add__(self, other): return 123
then I can do Foo()+1 and get 123.
Foo()+1
But if I do <
Implement the __radd__() method as well.