Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. from decimal import *
  2. ctx = getcontext()
  3.  
  4. ctx.traps[Clamped] = 1
  5. ctx.traps[Inexact] = 1
  6. ctx.traps[Subnormal] = 1
  7.  
  8. ctx.prec = 8
  9.  
  10. ctx.Emin = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement