Commit 2c41a0f9 authored by Mark Dickinson's avatar Mark Dickinson

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.
........
parent ad8e0c16
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment