[Python-checkins] r68499 - python/trunk/Lib/test/test_decimal.py

mark.dickinson python-checkins at python.org
Sat Jan 10 20:14:55 CET 2009


Author: mark.dickinson
Date: Sat Jan 10 20:14:55 2009
New Revision: 68499

Log:
Remove an unnecessary check from test_decimal.


Modified:
   python/trunk/Lib/test/test_decimal.py

Modified: python/trunk/Lib/test/test_decimal.py
==============================================================================
--- python/trunk/Lib/test/test_decimal.py	(original)
+++ python/trunk/Lib/test/test_decimal.py	Sat Jan 10 20:14:55 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