forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bpo-4356: Add key function support to the bisect module (pythonGH-20556)
- Loading branch information
1 parent
de73d43
commit 871934d
Showing
7 changed files
with
333 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,8 +111,6 @@ howto/urllib2,,:password,"""joe:[email protected]""" | |
library/ast,,:upper,lower:upper | ||
library/ast,,:step,lower:upper:step | ||
library/audioop,,:ipos,"# factor = audioop.findfactor(in_test[ipos*2:ipos*2+len(out_test)]," | ||
library/bisect,32,:hi,all(val >= x for val in a[i:hi]) | ||
library/bisect,42,:hi,all(val > x for val in a[i:hi]) | ||
library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds | ||
library/configparser,,:option,${section:option} | ||
library/configparser,,:path,python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Library/2020-05-31-10-48-47.bpo-4356.P8kXqp.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add a key function to the bisect module. |
Oops, something went wrong.