(self, x)
| 39 | return float.__new__(cls, value) |
| 40 | |
| 41 | def __add__(self, x): |
| 42 | assert_(isinstance(x, PhysicalQuantity)) |
| 43 | return PhysicalQuantity(float(x) + float(self)) |
| 44 | __radd__ = __add__ |
| 45 | |
| 46 | def __sub__(self, x): |
nothing calls this directly
no test coverage detected