massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / _bisect.pyi
1 """Stub file for the '_bisect' module."""\r
2 \r
3 from typing import Sequence, TypeVar\r
4 \r
5 _T = TypeVar('_T')\r
6 def bisect(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
7 def bisect_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
8 def bisect_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
9 def insort(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r
10 def insort_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r
11 def insort_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r