From: Mark Dickinson Date: Sat, 10 Jan 2009 19:16:40 +0000 (+0000) Subject: Merged revisions 68499 via svnmerge from X-Git-Tag: v3.1a1~533 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44e3bb6a008f28c017fab14f5a154dfde7fd5fe8;p=python Merged revisions 68499 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68499 | mark.dickinson | 2009-01-10 19:14:55 +0000 (Sat, 10 Jan 2009) | 2 lines Remove an unnecessary check from test_decimal. ........ --- diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index ade356c12d..9643804160 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