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