Remove an unnecessary check from test_decimal.

This commit is contained in:
Mark Dickinson 2009-01-10 19:14:55 +00:00
parent 590c66810f
commit da62f81d1d

View file

@ -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