(self, other, level=None, fill_value=None, axis: Axis = 0)
| 7267 | |
| 7268 | @Appender(ops.make_flex_doc("rmul", "series")) |
| 7269 | def rmul(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series: |
| 7270 | return self._flex_method( |
| 7271 | other, roperator.rmul, level=level, fill_value=fill_value, axis=axis |
| 7272 | ) |
| 7273 | |
| 7274 | def truediv(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series: |
| 7275 | """ |
nothing calls this directly
no test coverage detected