[Python-checkins] r81732 - python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/genlocale.py

stefan.krah python-checkins at python.org
Sat Jun 5 13:33:09 CEST 2010


Author: stefan.krah
Date: Sat Jun  5 13:33:09 2010
New Revision: 81732

Log:
randint() signature changed

Modified:
   python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/genlocale.py

Modified: python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/genlocale.py
==============================================================================
--- python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/genlocale.py	(original)
+++ python/branches/py3k-cdecimal/Lib/test/decimal_extended_tests/genlocale.py	Sat Jun  5 13:33:09 2010
@@ -141,7 +141,7 @@
             testno += 1
             printit(testno, s, fmt)
         for x in range(100):
-            s = randint(20, 425)
+            s = randint(20)
             testno += 1
             printit(testno, s, fmt)
 


More information about the Python-checkins mailing list