(self, x)
| 18 | __radd__ = __add__ |
| 19 | |
| 20 | def __sub__(self, x): |
| 21 | assert_(isinstance(x, PhysicalQuantity)) |
| 22 | return PhysicalQuantity(float(self) - float(x)) |
| 23 | |
| 24 | def __rsub__(self, x): |
| 25 | assert_(isinstance(x, PhysicalQuantity)) |
nothing calls this directly
no test coverage detected