From: Pablo Galindo Salgado Date: Tue, 14 Sep 2021 19:53:14 +0000 (+0100) Subject: bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.10 What... X-Git-Tag: v3.11.0a1~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aaa85949717e4ab2ed700e58762f0a3ce049a37;p=thirdparty%2FPython%2Fcpython.git bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.10 What's new (GH-28339) --- diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index e5069c5d9aea..d1a1cb45dea1 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -932,6 +932,12 @@ bdb Add :meth:`~bdb.Breakpoint.clearBreakpoints` to reset all set breakpoints. (Contributed by Irit Katriel in :issue:`24160`.) +bisect +------ + +Added the possibility of providing a *key* function to the APIs in the :mod:`bisect` +module. (Contributed by Raymond Hettinger in :issue:`4356`.) + codecs ------