Commit ab6ee7a0 authored by Mark Dickinson's avatar Mark Dickinson

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

parent 6cbb7f94
...@@ -76,7 +76,7 @@ def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024): ...@@ -76,7 +76,7 @@ def strtod(s, mant_dig=53, min_exp = -1021, max_exp = 1024):
hexdigs, hexdigs,
e + 4*hexdigs) e + 4*hexdigs)
TEST_SIZE = 10 TEST_SIZE = 16
@unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short',
"applies only when using short float repr style") "applies only when using short float repr style")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment