summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-01 19:15:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-01 19:15:23 (GMT)
commit0168d3d9b1f6c236b23afedab3c61254fcb6f072 (patch)
treeba52f148840c8d548d27f867d3426496a1b77532 /Misc
parent5ebe65f8cb541b10f07fb6ce2b4283a26c7e1d80 (diff)
parente4ad37e50efadc319d6c1089222f552dfcbf76ee (diff)
downloadcpython-0168d3d9b1f6c236b23afedab3c61254fcb6f072.zip
cpython-0168d3d9b1f6c236b23afedab3c61254fcb6f072.tar.gz
cpython-0168d3d9b1f6c236b23afedab3c61254fcb6f072.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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5dc8437..a0ef886 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,6 +61,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.