massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / _threading_local.pyi
1 # Source: https://github.com/python/cpython/blob/master/Lib/_threading_local.py\r
2 from typing import Any, Dict, List, Tuple\r
3 from weakref import ReferenceType\r
4 \r
5 __all__: List[str]\r
6 localdict = Dict[Any, Any]\r
7 \r
8 class _localimpl:\r
9     key: str\r
10     dicts: Dict[int, Tuple[ReferenceType, localdict]]\r
11     def __init__(self) -> None: ...\r
12     def get_dict(self) -> localdict: ...\r
13     def create_dict(self) -> localdict: ...\r
14 \r
15 class local:\r
16     def __getattribute__(self, name: str) -> Any: ...\r
17     def __setattr__(self, name: str, value: Any) -> None: ...\r
18     def __delattr__(self, name: str) -> None: ...\r