diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-02 17:00:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-02 17:00:22 (GMT) |
commit | 1dd8e71eb3207a841844ee35520b0e5b458916db (patch) | |
tree | a5d0afb6ee3bd0045289bd21e6344b103347a2a7 /Misc | |
parent | a7db0576acd6c90b6e0cb10f35cd3e898330cf01 (diff) | |
download | cpython-1dd8e71eb3207a841844ee35520b0e5b458916db.zip cpython-1dd8e71eb3207a841844ee35520b0e5b458916db.tar.gz cpython-1dd8e71eb3207a841844ee35520b0e5b458916db.tar.bz2 |
Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -42,6 +42,9 @@ Library - Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes. Patch written by William Orr. +- Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq's siftup + and siftdown functions. + - Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. - Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't |