summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_strtod.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-17 11:13:30 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-17 11:13:30 (GMT)
commit4c1718c0e34e955423db92f1b69d57fc580ea57d (patch)
tree32f9e7fc7fd89bb6cc266599499fad720a6947a9 /Lib/test/test_strtod.py
parent1c7d69b8a8726a3930419356871d9b0d02bb5a83 (diff)
downloadcpython-4c1718c0e34e955423db92f1b69d57fc580ea57d.zip
cpython-4c1718c0e34e955423db92f1b69d57fc580ea57d.tar.gz
cpython-4c1718c0e34e955423db92f1b69d57fc580ea57d.tar.bz2
Merged revisions 77566 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77566 | mark.dickinson | 2010-01-17 11:10:03 +0000 (Sun, 17 Jan 2010) | 1 line Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. ........
Diffstat (limited to 'Lib/test/test_strtod.py')
-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 a838b04..7830021 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")