(context, flag)
| 3885 | Subnormal = self.decimal.Subnormal |
| 3886 | |
| 3887 | def raise_error(context, flag): |
| 3888 | if self.decimal == C: |
| 3889 | context.flags[flag] = True |
| 3890 | if context.traps[flag]: |
| 3891 | raise flag |
| 3892 | else: |
| 3893 | context._raise_error(flag) |
| 3894 | |
| 3895 | context = Context(prec=9, Emin = -425000000, Emax = 425000000, |
| 3896 | rounding=ROUND_HALF_EVEN, traps=[], flags=[]) |
nothing calls this directly
no test coverage detected