Searched defs:copy_sign (Results 1 - 2 of 2) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Ddecimal.py2926 def copy_sign(self, other): member in class:Decimal
3460 return self.copy_sign(other)
4160 def copy_sign(self, a, b): member in class:Context
4166 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33'))
4168 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33'))
4170 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33'))
4172 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33'))
4174 >>> ExtendedContext.copy_sign(1, -2)
4176 >>> ExtendedContext.copy_sign(Decimal(1), -2)
4178 >>> ExtendedContext.copy_sign(
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Ddecimal.py2926 def copy_sign(self, other): member in class:Decimal
3460 return self.copy_sign(other)
4160 def copy_sign(self, a, b): member in class:Context
4166 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33'))
4168 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33'))
4170 >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33'))
4172 >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33'))
4174 >>> ExtendedContext.copy_sign(1, -2)
4176 >>> ExtendedContext.copy_sign(Decimal(1), -2)
4178 >>> ExtendedContext.copy_sign(
[all...]

Completed in 44 milliseconds