massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / aws-xray-sdk / aws_xray_sdk / core / async_context.pyi
1 from typing import Any
2
3 from .context import Context as _Context
4
5 class AsyncContext(_Context):
6     def __init__(self, *args, loop: Any | None = ..., use_task_factory: bool = ..., **kwargs) -> None: ...
7     def clear_trace_entities(self) -> None: ...
8
9 class TaskLocalStorage:
10     def __init__(self, loop: Any | None = ...) -> None: ...
11     def __setattr__(self, name, value) -> None: ...
12     def __getattribute__(self, item): ...
13     def clear(self) -> None: ...
14
15 def task_factory(loop, coro): ...