diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-09-14 19:53:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 19:53:14 (GMT) |
commit | 1aaa85949717e4ab2ed700e58762f0a3ce049a37 (patch) | |
tree | d2f9f609590cc2e393309da74fd46b3106dbc11f /Doc | |
parent | b668cdfa09e9bdfcfddaadd23dbd455d5f667383 (diff) | |
download | cpython-1aaa85949717e4ab2ed700e58762f0a3ce049a37.zip cpython-1aaa85949717e4ab2ed700e58762f0a3ce049a37.tar.gz cpython-1aaa85949717e4ab2ed700e58762f0a3ce049a37.tar.bz2 |
bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.10 What's new (GH-28339)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index e5069c5..d1a1cb4 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 ------ |