Return other - self
(self, other, context=None)
| 1267 | return self.__add__(other.copy_negate(), context=context) |
| 1268 | |
| 1269 | def __rsub__(self, other, context=None): |
| 1270 | """Return other - self""" |
| 1271 | other = _convert_other(other) |
| 1272 | if other is NotImplemented: |
| 1273 | return other |
| 1274 | |
| 1275 | return other.__sub__(self, context=context) |
| 1276 | |
| 1277 | def __mul__(self, other, context=None): |
| 1278 | """Return self * other. |
nothing calls this directly
no test coverage detected