8000 GH-104145: Use fully-qualified cross reference types for the bisect module by AA-Turner · Pull Request #104172 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-104145: Use fully-qualified cross reference types for the bisect module #104172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Alter target
  • Loading branch information
AA-Turner committed May 4, 2023
commit e3ff8e9b11e469885dc165712fd7a2a2be0407df
8 changes: 4 additions & 4 deletions Doc/library/bisect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ thoughts in mind:
Searching Sorted Lists
----------------------

The above :func:`.bisect` functions are useful for finding insertion points but
can be tricky or awkward to use for common searching tasks. The following five
functions show how to transform them into the standard lookups for sorted
lists::
The above :py:mod:`bisect functions <bisect>` are useful for finding insertion
points but can be tricky or awkward to use for common searching tasks. The
following five functions show how to transform them into the standard lookups
for sorted lists::

def index(a, x):
'Locate the leftmost value exactly equal to x'
Expand Down
0