Works properly in 2.7... ```py class test: def __radd__(self, other): return other + (1,) assert (3,2) + test() == (3,2,1) ```
Works properly in 2.7...