summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pow.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2007-07-26 14:03:00 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2007-07-26 14:03:00 (GMT)
commit00f2029cd57ded3be287041b527c84cd8442afd5 (patch)
treef6a637e4848f7225feaeadcda6bc71bff6da605c /Lib/test/test_pow.py
parentc473149a5a93e4648b559023e5420b07e2832b4d (diff)
downloadcpython-00f2029cd57ded3be287041b527c84cd8442afd5.zip
cpython-00f2029cd57ded3be287041b527c84cd8442afd5.tar.gz
cpython-00f2029cd57ded3be287041b527c84cd8442afd5.tar.bz2
Add explicit test for a misbehaving math.floor
Diffstat (limited to 'Lib/test/test_pow.py')
-rw-r--r--Lib/test/test_pow.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py
index c4aeb19..361a475 100644
--- a/Lib/test/test_pow.py
+++ b/Lib/test/test_pow.py
@@ -106,12 +106,9 @@ class PowTest(unittest.TestCase):
# platform pow() was buggy, and Python didn't worm around it.
eq = self.assertEquals
a = -1.0
- # XXX Temporary diagnostic for failure on alpha Debian buildbot
- from sys import __stdout__
- from math import floor
- print >> __stdout__, "*** Number: %r" % 1.23e167
- print >> __stdout__, "*** Floor: %r" % floor(1.23e167)
- # XXX End diagnostic message
+ # The next two tests can still fail if the platform floor()
+ # function doesn't treat all large inputs as integers
+ # test_math should also fail if that is happening
eq(pow(a, 1.23e167), 1.0)
eq(pow(a, -1.23e167), 1.0)
for b in range(-10, 11):