Lines Matching refs:Emax
133 Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
284 Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
309 Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
792 :attr:`Emax` or less than :attr:`Etiny`.
996 .. class:: Context(prec=None, rounding=None, Emin=None, Emax=None, capitals=None, clamp=None, flags…
1011 The *Emin* and *Emax* fields are integers specifying the outer limits allowable
1013 *Emax* in the range [:const:`0`, :const:`MAX_EMAX`].
1022 range ``Emin - prec + 1 <= e <= Emax - prec + 1``. If *clamp* is
1024 the :class:`Decimal` instance is at most ``Emax``. When *clamp* is
1031 >>> Context(prec=6, Emax=999, clamp=1).create_decimal('1.23e999')
1118 Returns a value equal to ``Emax - prec + 1``.
1543 :attr:`Emin` and :attr:`Emax` limits. If possible, the exponent is reduced to
1592 Indicates the exponent is larger than :attr:`Emax` after rounding has
2134 >>> c.Emax = MAX_EMAX