Home | History | Annotate | Download | only in Lib

Lines Matching refs:to_eng_string

1050     def to_eng_string(self, context=None):
5340 def to_eng_string(self, a):
5349 >>> ExtendedContext.to_eng_string(Decimal('123E+1'))
5351 >>> ExtendedContext.to_eng_string(Decimal('123E+3'))
5353 >>> ExtendedContext.to_eng_string(Decimal('123E-10'))
5355 >>> ExtendedContext.to_eng_string(Decimal('-123E-12'))
5357 >>> ExtendedContext.to_eng_string(Decimal('7E-7'))
5359 >>> ExtendedContext.to_eng_string(Decimal('7E+1'))
5361 >>> ExtendedContext.to_eng_string(Decimal('0E+1'))
5366 return a.to_eng_string(context=self)