diff options
author | Meador Inge <meadori@gmail.com> | 2012-05-28 19:47:53 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-05-28 19:47:53 (GMT) |
commit | d102e04e4a9f84f632c5dfff5e7d3aae7022b33e (patch) | |
tree | bfd2462871d5775da6279b8f7aa8e8444f989ce9 /Lib/ctypes | |
parent | ef4c5010e45924c4c21441e372e83463e66515d5 (diff) | |
parent | 031e25b0f74ae2c7c82a6d2a3c227e74278b22d9 (diff) | |
download | cpython-d102e04e4a9f84f632c5dfff5e7d3aae7022b33e.zip cpython-d102e04e4a9f84f632c5dfff5e7d3aae7022b33e.tar.gz cpython-d102e04e4a9f84f632c5dfff5e7d3aae7022b33e.tar.bz2 |
Issue #9041: raised exception is misleading
An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that
caused an incorrect exception to be returned in the case of overflow has been
fixed.
Diffstat (limited to 'Lib/ctypes')
-rw-r--r-- | Lib/ctypes/test/test_numbers.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py index 244dbaf..8753a07 100644 --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -217,6 +217,16 @@ class NumberTestCase(unittest.TestCase): # probably be changed: self.assertRaises(TypeError, c_int, c_long(42)) + def test_float_overflow(self): + import sys + big_int = int(sys.float_info.max) * 2 + for t in float_types + [c_longdouble]: + self.assertRaises(OverflowError, t, big_int) + if (hasattr(t, "__ctype_be__")): + self.assertRaises(OverflowError, t.__ctype_be__, big_int) + if (hasattr(t, "__ctype_le__")): + self.assertRaises(OverflowError, t.__ctype_le__, big_int) + ## def test_perf(self): ## check_perf() |