[Python-checkins] r77566 - python/trunk/Lib/test/test_strtod.py

mark.dickinson python-checkins at python.org
Sun Jan 17 12:10:03 CET 2010


Author: mark.dickinson
Date: Sun Jan 17 12:10:03 2010
New Revision: 77566

Log:
Increase number of strtod tests slightly, to make it more likely that a memory leak is detected.

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

Modified: python/trunk/Lib/test/test_strtod.py
==============================================================================
--- python/trunk/Lib/test/test_strtod.py	(original)
+++ python/trunk/Lib/test/test_strtod.py	Sun Jan 17 12:10:03 2010
@@ -76,7 +76,7 @@
         hexdigs,
         e + 4*hexdigs)
 
-TEST_SIZE = 10
+TEST_SIZE = 16
 
 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short',
                      "applies only when using short float repr style")


More information about the Python-checkins mailing list