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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/async_context.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/async_context.pyi
new file mode 100644 (file)
index 0000000..ebedf69
--- /dev/null
@@ -0,0 +1,15 @@
+from typing import Any
+
+from .context import Context as _Context
+
+class AsyncContext(_Context):
+    def __init__(self, *args, loop: Any | None = ..., use_task_factory: bool = ..., **kwargs) -> None: ...
+    def clear_trace_entities(self) -> None: ...
+
+class TaskLocalStorage:
+    def __init__(self, loop: Any | None = ...) -> None: ...
+    def __setattr__(self, name, value) -> None: ...
+    def __getattribute__(self, item): ...
+    def clear(self) -> None: ...
+
+def task_factory(loop, coro): ...