commit | e9e35c3f6b0be57f44b1dac653e6adbe23cc2e93 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 01 20:07:40 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 01 20:07:40 2012 +0100 |
tree | 470855635b61689741b899b2f6d086c2884f85bf | |
parent | 4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68 [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 43f1a8f..3c9ffc0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -130,6 +130,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.