summaryrefslogtreecommitdiff
path: root/Lib/test/test_decimal.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-10 19:16:40 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-01-10 19:16:40 +0000
commit44e3bb6a008f28c017fab14f5a154dfde7fd5fe8 (patch)
tree1580b5b231570013874d0d24808ee136eb3711a2 /Lib/test/test_decimal.py
parent644c430f3dec64d9ea560ccdda93bd1774d618d0 (diff)
downloadcpython-git-44e3bb6a008f28c017fab14f5a154dfde7fd5fe8.tar.gz
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. ........
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r--Lib/test/test_decimal.py1
1 files changed, 0 insertions, 1 deletions
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