[Python-checkins] cpython: Fix nonunique test ids in math_testcases.txt.

mark.dickinson python-checkins at python.org
Mon May 9 09:19:01 CEST 2011


http://hg.python.org/cpython/rev/fafe6f814d55
changeset:   69972:fafe6f814d55
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Mon May 09 08:18:57 2011 +0100
summary:
  Fix nonunique test ids in math_testcases.txt.

files:
  Lib/test/math_testcases.txt |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/test/math_testcases.txt b/Lib/test/math_testcases.txt
--- a/Lib/test/math_testcases.txt
+++ b/Lib/test/math_testcases.txt
@@ -551,9 +551,9 @@
 log20110 log2 2048.0 -> 11.0
 
 log20200 log2 0.5 -> -1.0
-log20200 log2 0.25 -> -2.0
-log20200 log2 0.125 -> -3.0
-log20200 log2 0.0625 -> -4.0
+log20201 log2 0.25 -> -2.0
+log20202 log2 0.125 -> -3.0
+log20203 log2 0.0625 -> -4.0
 
 -- values close to 1.0
 log20300 log2 1.0000000000000002 -> 3.2034265038149171e-16
@@ -573,7 +573,7 @@
 log20410 log2 1e-308 -> -1023.1538532253076
 log20411 log2 2.2250738585072014e-308 -> -1022.0
 log20412 log2 4.4501477170144028e-308 -> -1021.0
-log20412 log2 1e-307 -> -1019.8319251304202
+log20413 log2 1e-307 -> -1019.8319251304202
 
 -- huge values
 log20500 log2 1.7976931348623157e+308 -> 1024.0

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list