(self, x)
| 13 | return float.__new__(cls, value) |
| 14 | |
| 15 | def __add__(self, x): |
| 16 | assert_(isinstance(x, PhysicalQuantity)) |
| 17 | return PhysicalQuantity(float(x) + float(self)) |
| 18 | __radd__ = __add__ |
| 19 | |
| 20 | def __sub__(self, x): |
nothing calls this directly
no test coverage detected