Home | History | Annotate | Download | only in python2.7

Lines Matching full:scaleb

3565     def scaleb(self, other, context=None):
5236 def scaleb (self, a, b):
5239 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2'))
5241 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0'))
5243 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3'))
5245 >>> ExtendedContext.scaleb(1, 4)
5247 >>> ExtendedContext.scaleb(Decimal(1), 4)
5249 >>> ExtendedContext.scaleb(1, Decimal(4))
5253 return a.scaleb(b, context=self)