Return a copy of the first operand with the sign set to be the same as the sign of the second operand. For example:
copy_sign(other, context=None)
>>> Decimal('2.3').copy_sign(Decimal('-1.5')) Decimal('-2.3')