Python stdlib module — bisect. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
.bisect()Neutralbisect(a, x, lo, hi, key)
Return the index where to insert item x in list a, assuming a is sorted.
.bisect_left()Neutralbisect_left(a, x, lo, hi, key)
Return the index where to insert item x in list a, assuming a is sorted.
.bisect_right()Neutralbisect_right(a, x, lo, hi, key)
Return the index where to insert item x in list a, assuming a is sorted.
.insort()Neutralinsort(a, x, lo, hi, key)
Insert item x in list a, and keep it sorted assuming a is sorted.
.insort_left()Neutralinsort_left(a, x, lo, hi, key)
Insert item x in list a, and keep it sorted assuming a is sorted.
.insort_right()Neutralinsort_right(a, x, lo, hi, key)
Insert item x in list a, and keep it sorted assuming a is sorted.
| FQN | Field | |
|---|---|---|
| bisect | fqns[0] |
Wrong FQN → 0 findings. Verify with: change fqns to garbage → must produce 0 results.
import bisect