[Python-checkins] r68500 - in python/branches/py3k: Lib/test/test_decimal.py

mark.dickinson python-checkins at python.org
Sat Jan 10 20:16:41 CET 2009


Author: mark.dickinson
Date: Sat Jan 10 20:16:40 2009
New Revision: 68500

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_decimal.py

Modified: python/branches/py3k/Lib/test/test_decimal.py
==============================================================================
--- python/branches/py3k/Lib/test/test_decimal.py	(original)
+++ python/branches/py3k/Lib/test/test_decimal.py	Sat Jan 10 20:16:40 2009
@@ -168,7 +168,6 @@
         -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


More information about the Python-checkins mailing list