summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-05-28 19:47:53 (GMT)
committerMeador Inge <meadori@gmail.com>2012-05-28 19:47:53 (GMT)
commitd102e04e4a9f84f632c5dfff5e7d3aae7022b33e (patch)
treebfd2462871d5775da6279b8f7aa8e8444f989ce9 /Misc
parentef4c5010e45924c4c21441e372e83463e66515d5 (diff)
parent031e25b0f74ae2c7c82a6d2a3c227e74278b22d9 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c37c556..4b7cddb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -714,6 +714,10 @@ Documentation
Extension Modules
-----------------
+- Issue #9041: 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.
+
- Issue #14212: The re module didn't retain a reference to buffers it was
scanning, resulting in segfaults.