Returns maximum exponent (= Emax - prec + 1)
(self)
| 4050 | return int(self.Emin - self.prec + 1) |
| 4051 | |
| 4052 | def Etop(self): |
| 4053 | """Returns maximum exponent (= Emax - prec + 1)""" |
| 4054 | return int(self.Emax - self.prec + 1) |
| 4055 | |
| 4056 | def _set_rounding(self, type): |
| 4057 | """Sets the rounding type. |
no outgoing calls