Returns a copy with the sign set to 0.
(self)
| 2982 | return s.compare_total(o) |
| 2983 | |
| 2984 | def copy_abs(self): |
| 2985 | """Returns a copy with the sign set to 0. """ |
| 2986 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
| 2987 | |
| 2988 | def copy_negate(self): |
| 2989 | """Returns a copy with the sign inverted.""" |