(self, x)
| 48 | return PhysicalQuantity(float(self) - float(x)) |
| 49 | |
| 50 | def __rsub__(self, x): |
| 51 | assert_(isinstance(x, PhysicalQuantity)) |
| 52 | return PhysicalQuantity(float(x) - float(self)) |
| 53 | |
| 54 | def __mul__(self, x): |
| 55 | return PhysicalQuantity(float(x) * float(self)) |
nothing calls this directly
no test coverage detected