summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-01 18:52:06 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-01 18:52:06 (GMT)
commit9f69e79c450c3c17172046f937941e6df1802a6d (patch)
tree346e98946bad3a96f6a939ab6dfb2c53b81e00b2 /Misc/NEWS
parent42d5c415224cf0bae36c74840b0d1c481f3ee99b (diff)
downloadcpython-9f69e79c450c3c17172046f937941e6df1802a6d.zip
cpython-9f69e79c450c3c17172046f937941e6df1802a6d.tar.gz
cpython-9f69e79c450c3c17172046f937941e6df1802a6d.tar.bz2
Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9a18c13..7ece312 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,9 @@ Core and Builtins
Library
-------
+- Issue #16228: Fix a crash in the json module where a list changes size
+ while it is being encoded. Patch by Serhiy Storchaka.
+
- Issue #14897: Enhance error messages of struct.pack and
struct.pack_into. Patch by Matti Mäki.