Lines Matching refs:Emax
478 self.context.Emax = exp
1599 save_emax = DefaultContext.Emax
1602 DefaultContext.Emax = 425000000
1625 DefaultContext.Emax = save_emax
1724 c = Context(Emax=emax, Emin=emin)
2171 c.Emax = 999
2388 context.Emax = 999
2392 self.assertEqual(c.Emax, 999)
2604 c = Context(Emax=99999, Emin=-99999)
2648 xc.Emax = 1
2805 c2 = Context(prec=None, rounding=None, Emax=None, Emin=None,
2810 self.assertEqual(c.Emax, 999999)
2847 self.assertEqual(c.Emax, e.Emax)
2870 prec=prec, Emin=emin, Emax=emax,
2885 self.assertEqual(d.Emax, emax)
3590 new_ctx = Context(Emax=384)
3697 context = Context(prec=9, Emin = -425000000, Emax = 425000000,
4116 def __init__(self, prec=None, rounding=None, Emin=None, Emax=None, argument
4126 if Emax is not None:
4127 self.Emax = Emax
4170 c = MyContext(Emax=1, prec=1)
4171 self.assertEqual(c.Emax, 1)
4186 c = MyContext(clamp=1, Emax=99)
4269 c.Emax = 425000000
4290 c.Emax = 1
4419 c.Emax = 1
4433 c.Emax = 1
4680 self.assertEqual(c.Emax, 96)
4686 self.assertEqual(c.Emax, 384)
4692 self.assertEqual(c.Emax, 6144)
4790 c.Emax = 425000000
4851 self.assertRaises(ValueError, Context, Emax=gt_max_emax)
4856 self.assertRaises(OverflowError, Context, Emax=int_max+1)
4979 c.Emax = 3000
4987 self.assertEqual(c.Emax, 3000)
5000 self.assertEqual(c.Emax, 999999999)
5297 c = Context(prec=prec, rounding=round, Emin=emin, Emax=emax,
5304 self.assertEqual(c.Emax, emax)