[Python-checkins] r77569 - in python/branches/release31-maint: Lib/test/test_strtod.py

mark.dickinson python-checkins at python.org
Sun Jan 17 12:14:48 CET 2010


Author: mark.dickinson
Date: Sun Jan 17 12:14:48 2010
New Revision: 77569

Log:
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.
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/test/test_strtod.py

Modified: python/branches/release31-maint/Lib/test/test_strtod.py
==============================================================================
--- python/branches/release31-maint/Lib/test/test_strtod.py	(original)
+++ python/branches/release31-maint/Lib/test/test_strtod.py	Sun Jan 17 12:14:48 2010
@@ -76,7 +76,7 @@
         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")


More information about the Python-checkins mailing list