massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / asyncio / unix_events.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/asyncio/unix_events.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/asyncio/unix_events.pyi
new file mode 100644 (file)
index 0000000..e8e57a2
--- /dev/null
@@ -0,0 +1,61 @@
+import sys
+import types
+from _typeshed import Self
+from socket import socket
+from typing import Any, Callable, Type
+
+from .base_events import Server
+from .events import AbstractEventLoop, BaseDefaultEventLoopPolicy, _ProtocolFactory, _SSLContext
+from .selector_events import BaseSelectorEventLoop
+
+class AbstractChildWatcher:
+    def add_child_handler(self, pid: int, callback: Callable[..., Any], *args: Any) -> None: ...
+    def remove_child_handler(self, pid: int) -> bool: ...
+    def attach_loop(self, loop: AbstractEventLoop | None) -> None: ...
+    def close(self) -> None: ...
+    def __enter__(self: Self) -> Self: ...
+    def __exit__(self, typ: Type[BaseException] | None, exc: BaseException | None, tb: types.TracebackType | None) -> None: ...
+    if sys.version_info >= (3, 8):
+        def is_active(self) -> bool: ...
+
+class BaseChildWatcher(AbstractChildWatcher):
+    def __init__(self) -> None: ...
+
+class SafeChildWatcher(BaseChildWatcher):
+    def __enter__(self: Self) -> Self: ...
+
+class FastChildWatcher(BaseChildWatcher):
+    def __enter__(self: Self) -> Self: ...
+
+class _UnixSelectorEventLoop(BaseSelectorEventLoop):
+    if sys.version_info < (3, 7):
+        async def create_unix_server(
+            self,
+            protocol_factory: _ProtocolFactory,
+            path: str | None = ...,
+            *,
+            sock: socket | None = ...,
+            backlog: int = ...,
+            ssl: _SSLContext = ...,
+        ) -> Server: ...
+
+class _UnixDefaultEventLoopPolicy(BaseDefaultEventLoopPolicy):
+    def get_child_watcher(self) -> AbstractChildWatcher: ...
+    def set_child_watcher(self, watcher: AbstractChildWatcher | None) -> None: ...
+
+SelectorEventLoop = _UnixSelectorEventLoop
+
+DefaultEventLoopPolicy = _UnixDefaultEventLoopPolicy
+
+if sys.version_info >= (3, 8):
+
+    from typing import Protocol
+    class _Warn(Protocol):
+        def __call__(
+            self, message: str, category: Type[Warning] | None = ..., stacklevel: int = ..., source: Any | None = ...
+        ) -> None: ...
+    class MultiLoopChildWatcher(AbstractChildWatcher):
+        def __enter__(self: Self) -> Self: ...
+    class ThreadedChildWatcher(AbstractChildWatcher):
+        def __enter__(self: Self) -> Self: ...
+        def __del__(self, _warn: _Warn = ...) -> None: ...