MCPcopy
hub / github.com/pandas-dev/pandas / __isub__

Method __isub__

pandas/core/generic.py:12329–12331  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

_inplace_methodMethod · 0.95

Tested by

no test coverage detected