(self, other)
| 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): |
| 35 | return cmp(self.value, other.value) |
| 36 |