Compares two operands using their abstract representation ignoring sign. Like compare_total, but with operand's sign ignored and assumed to be 0.
(self, a, b)
| 4263 | return a.compare_total(b) |
| 4264 | |
| 4265 | def compare_total_mag(self, a, b): |
| 4266 | """Compares two operands using their abstract representation ignoring sign. |
| 4267 | |
| 4268 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 4269 | """ |
| 4270 | a = _convert_other(a, raiseit=True) |
| 4271 | return a.compare_total_mag(b) |
| 4272 | |
| 4273 | def copy_abs(self, a): |
| 4274 | """Returns a copy of the operand with the sign set to 0. |