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

This commit is contained in:
Mark Dickinson 2010-01-17 11:10:03 +00:00
parent 6cbb7f945a
commit ab6ee7a042
1 changed files with 1 additions and 1 deletions

View File

@ -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")