mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Remove an unnecessary check from test_decimal.
This commit is contained in:
parent
590c66810f
commit
da62f81d1d
1 changed files with 0 additions and 1 deletions
|
@ -168,7 +168,6 @@ def outside_decNumber_bounds(v, context):
|
||||||
-context.Emin > DEC_MAX_MATH):
|
-context.Emin > DEC_MAX_MATH):
|
||||||
return True
|
return True
|
||||||
if not v._is_special and v and (
|
if not v._is_special and v and (
|
||||||
len(v._int) > DEC_MAX_MATH or
|
|
||||||
v.adjusted() > DEC_MAX_MATH or
|
v.adjusted() > DEC_MAX_MATH or
|
||||||
v.adjusted() < 1-2*DEC_MAX_MATH):
|
v.adjusted() < 1-2*DEC_MAX_MATH):
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue