Returns a copy with the sign set to 0.
(self)
| 3027 | return s.compare_total(o) |
| 3028 | |
| 3029 | def copy_abs(self): |
| 3030 | """Returns a copy with the sign set to 0. """ |
| 3031 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
| 3032 | |
| 3033 | def copy_negate(self): |
| 3034 | """Returns a copy with the sign inverted.""" |
no test coverage detected