summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-09-03 16:21:29 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-09-03 16:21:29 (GMT)
commit7c4e409d075fdb923807513353b18a75a4520eba (patch)
tree465cbd3e01ffeba3a85e6da82d51590fc7a57b7d /Misc
parent2500c9827886fb1826317877aacaef023707349e (diff)
downloadcpython-7c4e409d075fdb923807513353b18a75a4520eba.zip
cpython-7c4e409d075fdb923807513353b18a75a4520eba.tar.gz
cpython-7c4e409d075fdb923807513353b18a75a4520eba.tar.bz2
Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ca0948c..d7ab17d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1435,6 +1435,7 @@ Greg Stein
Marek Stepniowski
Baruch Sterin
Chris Stern
+Eli Stevens
Alex Stewart
Victor Stinner
Richard Stoakley
diff --git a/Misc/NEWS b/Misc/NEWS
index e8f1421..48b9a83 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,6 +69,9 @@ Core and Builtins
Library
-------
+- Issue #11734: Add support for IEEE 754 half-precision floats to the
+ struct module. Based on a patch by Eli Stevens.
+
- Issue #27919: Deprecated ``extra_path`` distribution option in distutils
packaging.