Returns self with the sign of other.
(self, other, context=None)
| 2993 | return _dec_from_triple(1, self._int, self._exp, self._is_special) |
| 2994 | |
| 2995 | def copy_sign(self, other, context=None): |
| 2996 | """Returns self with the sign of other.""" |
| 2997 | other = _convert_other(other, raiseit=True) |
| 2998 | return _dec_from_triple(other._sign, self._int, |
| 2999 | self._exp, self._is_special) |
| 3000 | |
| 3001 | def exp(self, context=None): |
| 3002 | """Returns e ** self.""" |