diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-10 19:14:55 (GMT) |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-10 19:14:55 (GMT) |
| commit | da62f81d1d048808dbff1f96c5c4db366dc52149 (patch) | |
| tree | c53faa61f1aec2e5f35418aef310357714480833 | |
| parent | 590c66810f716ab1543fc27da7f8ce12482f25b4 (diff) | |
| download | cpython-da62f81d1d048808dbff1f96c5c4db366dc52149.zip cpython-da62f81d1d048808dbff1f96c5c4db366dc52149.tar.gz cpython-da62f81d1d048808dbff1f96c5c4db366dc52149.tar.bz2 | |
Remove an unnecessary check from test_decimal.
| -rw-r--r-- | Lib/test/test_decimal.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 4ca5c16..da87008 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -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 |
