(self)
| 28 | def __neg__(self): |
| 29 | return F(-self.value, -self.full) |
| 30 | def __abs__(self): |
| 31 | return F(abs(self.value), abs(self.full)) |
| 32 | def __pow__(self, other): |
| 33 | return F(pow(self.value, other.value), pow(self.full, other.full)) |
| 34 | def __cmp__(self, other): |