summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-10-29 19:25:01 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-10-29 19:25:01 (GMT)
commit4648b4779acd3d75d5f4b0b1438cb2af51cc06b2 (patch)
treed2ec74c5846f9a462fdb278b1d6424d8b9dafb01 /Misc
parent646eb1e8566821bd0129ce1ef5d300168856010e (diff)
parent92c28cace45261ae06c5361aef661a01f58a5413 (diff)
downloadcpython-4648b4779acd3d75d5f4b0b1438cb2af51cc06b2.zip
cpython-4648b4779acd3d75d5f4b0b1438cb2af51cc06b2.tar.gz
cpython-4648b4779acd3d75d5f4b0b1438cb2af51cc06b2.tar.bz2
#14897: Enhance error messages of struct.pack and struct.pack_into
Patch by Matti Mäki.
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 3966ba6..1db8194 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -820,6 +820,7 @@ Michael Muller
Neil Muller
Louis Munro
R. David Murray
+Matti Mäki
Dale Nagata
John Nagle
Takahiro Nakayama
diff --git a/Misc/NEWS b/Misc/NEWS
index 1db5843..76d4ad9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
+- Issue #14897: Enhance error messages of struct.pack and
+ struct.pack_into. Patch by Matti Mäki.
+
- Issue #12890: cgitb no longer prints spurious <p> tags in text
mode when the logdir option is specified.