Home | History | Annotate | Download | only in Lib

Lines Matching refs:to_eng_string

1079     def to_eng_string(self, context=None):
5512 def to_eng_string(self, a):
5521 >>> ExtendedContext.to_eng_string(Decimal('123E+1'))
5523 >>> ExtendedContext.to_eng_string(Decimal('123E+3'))
5525 >>> ExtendedContext.to_eng_string(Decimal('123E-10'))
5527 >>> ExtendedContext.to_eng_string(Decimal('-123E-12'))
5529 >>> ExtendedContext.to_eng_string(Decimal('7E-7'))
5531 >>> ExtendedContext.to_eng_string(Decimal('7E+1'))
5533 >>> ExtendedContext.to_eng_string(Decimal('0E+1'))
5538 return a.to_eng_string(context=self)