Remove an unnecessary check from test_decimal.
This commit is contained in:
parent
590c66810f
commit
da62f81d1d
|
@ -168,7 +168,6 @@ def outside_decNumber_bounds(v, context):
|
|||
-context.Emin > DEC_MAX_MATH):
|
||||
return True
|
||||
if not v._is_special and v and (
|
||||
len(v._int) > DEC_MAX_MATH or
|
||||
v.adjusted() > DEC_MAX_MATH or
|
||||
v.adjusted() < 1-2*DEC_MAX_MATH):
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue