massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / _thread.pyi
1 # Stubs for _thread\r
2 \r
3 # NOTE: These are incomplete!\r
4 \r
5 from typing import Any\r
6 \r
7 def _count() -> int: ...\r
8 _dangling = ...  # type: Any\r
9 \r
10 class LockType:\r
11     def acquire(self) -> None: ...\r
12     def release(self) -> None: ...\r
13 \r
14 def allocate_lock() -> LockType: ...\r
15 def get_ident() -> int: ...\r