massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / _threading_local.pyi
1 # Source: https://hg.python.org/cpython/file/2.7/Lib/_threading_local.py\r
2 from typing import Any, List\r
3 \r
4 __all__: List[str]\r
5 \r
6 class _localbase(object): ...\r
7 \r
8 class local(_localbase):\r
9     def __getattribute__(self, name: str) -> Any: ...\r
10     def __setattr__(self, name: str, value: Any) -> None: ...\r
11     def __delattr__(self, name: str) -> None: ...\r
12     def __del__(self) -> None: ...\r
13 \r
14 def _patch(self: local) -> None: ...\r