diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-04-19 20:40:33 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-04-19 20:40:33 (GMT) |
commit | ea835e7a875b7964d1c9b6875f836948ede48969 (patch) | |
tree | 05908ac0bef152bf45f770ca2f1b4196dc83327f /Misc/NEWS | |
parent | 769ba47bb281d1d261f2fa975a93cf1b7292ba24 (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |