summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-01 18:59:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-01 18:59:21 (GMT)
commit5ebe65f8cb541b10f07fb6ce2b4283a26c7e1d80 (patch)
treeeb43876e2c023c255b26cb6d79b188079f573f6f /Misc
parent90c0eb28c5ff1da76b258f9cf6a54abc6df19675 (diff)
parent9f69e79c450c3c17172046f937941e6df1802a6d (diff)
downloadcpython-5ebe65f8cb541b10f07fb6ce2b4283a26c7e1d80.zip
cpython-5ebe65f8cb541b10f07fb6ce2b4283a26c7e1d80.tar.gz
cpython-5ebe65f8cb541b10f07fb6ce2b4283a26c7e1d80.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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 845375d..5dc8437 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,6 +61,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.