commit | 9f69e79c450c3c17172046f937941e6df1802a6d | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 01 19:52:06 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 01 19:52:06 2012 +0100 |
tree | 346e98946bad3a96f6a939ab6dfb2c53b81e00b2 | |
parent | 42d5c415224cf0bae36c74840b0d1c481f3ee99b [diff] [blame] |
Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. Patch by Serhiy Storchaka.
diff --git a/Misc/NEWS b/Misc/NEWS index 9a18c13..7ece312 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -143,6 +143,9 @@ 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.