summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-11-24 11:00:21 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-11-24 11:00:21 (GMT)
commitae31a7c78eed29b628bc650a083c3645b6daf0c2 (patch)
tree95ca76b84c24d8ee8990f89431e5cf1a9fedd307 /Lib/test
parentd884f8a9c4f62991b7f2b329bc3074aa3f93df4c (diff)
downloadcpython-ae31a7c78eed29b628bc650a083c3645b6daf0c2.zip
cpython-ae31a7c78eed29b628bc650a083c3645b6daf0c2.tar.gz
cpython-ae31a7c78eed29b628bc650a083c3645b6daf0c2.tar.bz2
Merged revisions 76485 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k ................ r76485 | mark.dickinson | 2009-11-24 10:59:34 +0000 (Tue, 24 Nov 2009) | 9 lines Merged revisions 76483 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76483 | mark.dickinson | 2009-11-24 10:54:58 +0000 (Tue, 24 Nov 2009) | 2 lines round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. ........ ................
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_float.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py
index 8ac936a..ebb666b 100644
--- a/Lib/test/test_float.py
+++ b/Lib/test/test_float.py
@@ -417,6 +417,10 @@ class RoundTestCase(unittest.TestCase):
self.assertRaises(OverflowError, round, INF)
self.assertRaises(OverflowError, round, -INF)
self.assertRaises(ValueError, round, NAN)
+ self.assertRaises(TypeError, round, INF, 0.0)
+ self.assertRaises(TypeError, round, -INF, 1.0)
+ self.assertRaises(TypeError, round, NAN, "ceci n'est pas un integer")
+ self.assertRaises(TypeError, round, -0.0, 1j)
@unittest.skipUnless(float.__getformat__("double").startswith("IEEE"),
"test requires IEEE 754 doubles")