From: Antoine Pitrou Date: Thu, 1 Nov 2012 19:03:30 +0000 (+0100) Subject: Issue #16228: Fix a crash in the json module where a list changes size while it is... X-Git-Tag: v3.4.0a1~2115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53d36b691241f278fa6173034e6edb10154e62d3;p=thirdparty%2FPython%2Fcpython.git Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. Patch by Serhiy Storchaka. --- 53d36b691241f278fa6173034e6edb10154e62d3 diff --cc Misc/NEWS index d99cc8cbcc68,5dc8437848ea..fa203a6d9956 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -85,9 -61,9 +85,12 @@@ Core and Builtin 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 #16351: New function gc.get_stats() returns per-generation collection + statistics. + - Issue #14897: Enhance error messages of struct.pack and struct.pack_into. Patch by Matti Mäki.