Lines Matching defs:copy_negate
1120 ans = self.copy_negate()
1266 # self - other is computed as self + other.copy_negate()
1267 return self.__add__(other.copy_negate(), context=context)
2357 self = self.copy_negate()
3033 def copy_negate(self):
4335 def copy_negate(self, a):
4338 >>> ExtendedContext.copy_negate(Decimal('101.5'))
4340 >>> ExtendedContext.copy_negate(Decimal('-101.5'))
4342 >>> ExtendedContext.copy_negate(1)
4346 return a.copy_negate()