(self, x)
| 22 | return PhysicalQuantity(float(self) - float(x)) |
| 23 | |
| 24 | def __rsub__(self, x): |
| 25 | assert_(isinstance(x, PhysicalQuantity)) |
| 26 | return PhysicalQuantity(float(x) - float(self)) |
| 27 | |
| 28 | def __mul__(self, x): |
| 29 | return PhysicalQuantity(float(x) * float(self)) |
nothing calls this directly
no test coverage detected