From: Mark Dickinson Date: Sun, 17 Jan 2010 11:10:03 +0000 (+0000) Subject: Increase number of strtod tests slightly, to make it more likely that a memory leak... X-Git-Tag: v2.7a3~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab6ee7a04207cb95140cd7aa52ebe132297c2103;p=python Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. --- diff --git a/Lib/test/test_strtod.py b/Lib/test/test_strtod.py index 189254260c..e633addbf5 100644 --- a/Lib/test/test_strtod.py +++ b/Lib/test/test_strtod.py @@ -76,7 +76,7 @@ def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): 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")