summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-19 20:40:33 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-19 20:40:33 (GMT)
commitea835e7a875b7964d1c9b6875f836948ede48969 (patch)
tree05908ac0bef152bf45f770ca2f1b4196dc83327f /Misc
parent769ba47bb281d1d261f2fa975a93cf1b7292ba24 (diff)
downloadcpython-ea835e7a875b7964d1c9b6875f836948ede48969.zip
cpython-ea835e7a875b7964d1c9b6875f836948ede48969.tar.gz
cpython-ea835e7a875b7964d1c9b6875f836948ede48969.tar.bz2
Issue #5463: Remove deprecated float coercion from struct module, along
with the _PY_STRUCT_FLOAT_COERCE constant. Simplify tests accordingly, and reenable (now-fixed) broken tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7cbe7a1..ff243af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -87,6 +87,11 @@ Library
Extension Modules
-----------------
+- Issue #5463: In struct module, remove deprecated float coercion
+ for integer type codes: struct.pack('L', 0.3) should now raise
+ an error. The _PY_STRUCT_FLOAT_COERCE constant has been removed.
+ The version number has been bumped to 0.3.
+
- Issue #5359: Readd the Berkley-DB detection code to allow _dbm be built
using Berkley-DB.