Lines Matching refs:scaleb
3665 def scaleb(self, other, context=None):
5408 def scaleb (self, a, b):
5411 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2'))
5413 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0'))
5415 >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3'))
5417 >>> ExtendedContext.scaleb(1, 4)
5419 >>> ExtendedContext.scaleb(Decimal(1), 4)
5421 >>> ExtendedContext.scaleb(1, Decimal(4))
5425 return a.scaleb(b, context=self)