summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-01 19:13:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-01 19:13:54 (GMT)
commite4ad37e50efadc319d6c1089222f552dfcbf76ee (patch)
treeb64936a5fbbdd7b21553261ebebd3ad09bf721ce /Misc/NEWS
parent9f69e79c450c3c17172046f937941e6df1802a6d (diff)
downloadcpython-e4ad37e50efadc319d6c1089222f552dfcbf76ee.zip
cpython-e4ad37e50efadc319d6c1089222f552dfcbf76ee.tar.gz
cpython-e4ad37e50efadc319d6c1089222f552dfcbf76ee.tar.bz2
Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on.
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 7ece312..4708e3f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,9 @@ Core and Builtins
Library
-------
+- Issue #16230: Fix a crash in select.select() when one the lists changes
+ size while iterated on. Patch by Serhiy Storchaka.
+
- Issue #16228: Fix a crash in the json module where a list changes size
while it is being encoded. Patch by Serhiy Storchaka.