diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 11:14:48 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 11:14:48 (GMT) |
commit | f3f5a1333be0623922798291286ae18c90617804 (patch) | |
tree | 5bc67b9d0119002388d4e7c2c6ccedf588a3a1c8 /Lib | |
parent | 513aab529a5f33d5723de3d8b9a1ae16e551fe4e (diff) | |
download | cpython-f3f5a1333be0623922798291286ae18c90617804.zip cpython-f3f5a1333be0623922798291286ae18c90617804.tar.gz cpython-f3f5a1333be0623922798291286ae18c90617804.tar.bz2 |
Merged revisions 77568 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r77568 | mark.dickinson | 2010-01-17 11:13:30 +0000 (Sun, 17 Jan 2010) | 9 lines
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')
-rw-r--r-- | Lib/test/test_strtod.py | 2 |
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") |