summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-05-28 19:21:16 (GMT)
committerMeador Inge <meadori@gmail.com>2012-05-28 19:21:16 (GMT)
commit031e25b0f74ae2c7c82a6d2a3c227e74278b22d9 (patch)
tree529eef2863c5a611a2e0cab151a92f4697ac9e0e /Misc
parent4b6045c30fb47a89cd32ebedc2b8d2603cd72e33 (diff)
downloadcpython-031e25b0f74ae2c7c82a6d2a3c227e74278b22d9.zip
cpython-031e25b0f74ae2c7c82a6d2a3c227e74278b22d9.tar.gz
cpython-031e25b0f74ae2c7c82a6d2a3c227e74278b22d9.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 386d103..059a1e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -262,6 +262,10 @@ Library
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.