summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-03-04 19:33:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-03-04 19:33:36 (GMT)
commit31584e30ab3e8d01613bb774b1e3d28e73314096 (patch)
treeb26a978fa4f92bd01f5714af36c0be05dad5cccb /Misc
parentb1efa53662385ba64289d9fe6fb8ca5b431c4119 (diff)
parent44d5214927e428e6837310fb0cb694b42f6d8bb6 (diff)
downloadcpython-31584e30ab3e8d01613bb774b1e3d28e73314096.zip
cpython-31584e30ab3e8d01613bb774b1e3d28e73314096.tar.gz
cpython-31584e30ab3e8d01613bb774b1e3d28e73314096.tar.bz2
Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently.
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 958cc1a..5bc1784 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -193,6 +193,9 @@ Core and Builtins
Library
-------
+- Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when
+ the list is being resized concurrently.
+
- Issue #16962: Use getdents64 instead of the obsolete getdents syscall
in the subprocess module on Linux.