(self, other)
| 12327 | |
| 12328 | @final |
| 12329 | def __isub__(self, other) -> Self: |
| 12330 | # error: Unsupported left operand type for - ("Type[NDFrame]") |
| 12331 | return self._inplace_method(other, type(self).__sub__) # type: ignore[operator] |
| 12332 | |
| 12333 | @final |
| 12334 | def __imul__(self, other) -> Self: |
nothing calls this directly
no test coverage detected