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

Method __imul__

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

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

_inplace_methodMethod · 0.95

Tested by

no test coverage detected