[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest released version of Modin.
[X] I have confirmed this bug exists on the main branch of Modin. (In order to do this you can follow this guide.)
Reproducible Example
import modin.pandas as pd
s = pd.Series([2])
s *= 3
Issue Description
The above code produces a 1-element series containing 5 instead of the expected 6, since a typo in our frontend code aliases __imul__ to __add__ instead of __mul__.
Expected Behavior
Multiply instead of adding.
Error Logs
```python-traceback
Replace this line with the error backtrace (if applicable).
```
Modin version checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest released version of Modin.
[X] I have confirmed this bug exists on the main branch of Modin. (In order to do this you can follow this guide.)
Reproducible Example
Issue Description
The above code produces a 1-element series containing
5
instead of the expected6
, since a typo in our frontend code aliases__imul__
to__add__
instead of__mul__
.Expected Behavior
Multiply instead of adding.
Error Logs
Installed Versions