(self, other)
| 72 | return self.ge(other) |
| 73 | |
| 74 | def __eq__(self, other): |
| 75 | if isinstance(other, str): |
| 76 | # Allow comparisons with Precise("5") == "5" |
| 77 | return str(self) == other |
| 78 | return self.equals(other) |
| 79 | |
| 80 | def mul(self, other): |
| 81 | integer_result = self.integer * other.integer |