(self, other, level=None, fill_value=None, axis: Axis = 0)
| 7185 | |
| 7186 | @Appender(ops.make_flex_doc("rsub", "series")) |
| 7187 | def rsub(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series: |
| 7188 | return self._flex_method( |
| 7189 | other, roperator.rsub, level=level, fill_value=fill_value, axis=axis |
| 7190 | ) |
| 7191 | |
| 7192 | def mul( |
| 7193 | self, |
nothing calls this directly
no test coverage detected