]> granicus.if.org Git - python/commitdiff
Merged revisions 77568 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sun, 17 Jan 2010 11:14:48 +0000 (11:14 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 17 Jan 2010 11:14:48 +0000 (11:14 +0000)
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.
  ........
................

Lib/test/test_strtod.py

index a838b043f25f4a9c2ce2d97f29bc12aa52f35cbf..7830021ee825faa640615b22f932ba1ad1364d3f 100644 (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")