summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-05-30 09:28:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-05-30 09:28:36 (GMT)
commit35db43955cf231a4040d32c77b1ff5a4b639039f (patch)
tree670f590844d11613b16ab61b018caaeb93e9bab1 /Misc
parente7bfe13635e4201660c9d016b62de10c2f7c9de3 (diff)
downloadcpython-35db43955cf231a4040d32c77b1ff5a4b639039f.zip
cpython-35db43955cf231a4040d32c77b1ff5a4b639039f.tar.gz
cpython-35db43955cf231a4040d32c77b1ff5a4b639039f.tar.bz2
Issue #13742: Add key and reverse parameters to heapq.merge()
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 7afb332..9047b2b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -94,6 +94,9 @@ Library
error bubble up as this "bad data" appears in many real world zip files in
the wild and is ignored by other zip tools.
+- Issue #13742: Added "key" and "reverse" parameters to heapq.merge().
+ (First draft of patch contributed by Simon Sapin.)
+
- Issue #21402: tkinter.ttk now works when default root window is not set.
- Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by