massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / _bisect.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/_bisect.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/_bisect.pyi
new file mode 100644 (file)
index 0000000..6345e77
--- /dev/null
@@ -0,0 +1,11 @@
+"""Stub file for the '_bisect' module."""\r
+\r
+from typing import Sequence, TypeVar\r
+\r
+_T = TypeVar('_T')\r
+def bisect(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
+def bisect_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
+def bisect_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...\r
+def insort(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r
+def insort_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r
+def insort_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> None: ...\r