summaryrefslogtreecommitdiffstats
path: root/Misc
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)
commit0552fc2b8af80bd93f43001ce9d6b03402630ee2 (patch)
treebac0dc2f14c661fc15642fdb9e0a82fc42eae6ef /Misc
parente9e35c3f6b0be57f44b1dac653e6adbe23cc2e93 (diff)
downloadcpython-0552fc2b8af80bd93f43001ce9d6b03402630ee2.zip
cpython-0552fc2b8af80bd93f43001ce9d6b03402630ee2.tar.gz
cpython-0552fc2b8af80bd93f43001ce9d6b03402630ee2.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 3c9ffc0..139216f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -130,6 +130,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.