summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-10-29 19:16:57 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-10-29 19:24:07 (GMT)
commit92c28cace45261ae06c5361aef661a01f58a5413 (patch)
tree3b35c7ba419651bd5531c83124c5f90b42e5ce7e /Misc
parent1b863ebfc8376700d571102d7ff0017ff1ef5b4e (diff)
downloadcpython-92c28cace45261ae06c5361aef661a01f58a5413.zip
cpython-92c28cace45261ae06c5361aef661a01f58a5413.tar.gz
cpython-92c28cace45261ae06c5361aef661a01f58a5413.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/ACKS3
-rw-r--r--Misc/NEWS3
2 files changed, 5 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 2b97f51..a070be8 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -710,6 +710,7 @@ Brian Merrell
Luke Mewburn
Carl Meyer
Mike Meyer
+Piotr Meyer
Steven Miale
Trent Mick
Tom Middleton
@@ -742,7 +743,7 @@ Sape Mullender
Michael Muller
Neil Muller
R. David Murray
-Piotr Meyer
+Matti Mäki
Dale Nagata
John Nagle
Takahiro Nakayama
diff --git a/Misc/NEWS b/Misc/NEWS
index f2ba982..4484813 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -135,6 +135,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.