summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-17 11:10:03 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-17 11:10:03 (GMT)
commitab6ee7a04207cb95140cd7aa52ebe132297c2103 (patch)
tree430a9ace7c292ed9ede46f09a16b553fda3078b7 /Lib
parent6cbb7f945af7bdc988e44a20910d498631f79230 (diff)
downloadcpython-ab6ee7a04207cb95140cd7aa52ebe132297c2103.zip
cpython-ab6ee7a04207cb95140cd7aa52ebe132297c2103.tar.gz
cpython-ab6ee7a04207cb95140cd7aa52ebe132297c2103.tar.bz2
Increase number of strtod tests slightly, to make it more likely that a memory leak is detected.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_strtod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_strtod.py b/Lib/test/test_strtod.py
index 1892542..e633add 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")