(self, other)
| 12332 | |
| 12333 | @final |
| 12334 | def __imul__(self, other) -> Self: |
| 12335 | # error: Unsupported left operand type for * ("Type[NDFrame]") |
| 12336 | return self._inplace_method(other, type(self).__mul__) # type: ignore[operator] |
| 12337 | |
| 12338 | @final |
| 12339 | def __itruediv__(self, other) -> Self: |
nothing calls this directly
no test coverage detected