massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / warnings.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/warnings.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/warnings.pyi
new file mode 100644 (file)
index 0000000..b1c9f4d
--- /dev/null
@@ -0,0 +1,62 @@
+from _warnings import warn as warn, warn_explicit as warn_explicit
+from types import ModuleType, TracebackType
+from typing import Any, Sequence, TextIO, Type, overload
+from typing_extensions import Literal
+
+_ActionKind = Literal["default", "error", "ignore", "always", "module", "once"]
+
+filters: Sequence[tuple[str, str | None, Type[Warning], str | None, int]]  # undocumented, do not mutate
+
+def showwarning(
+    message: Warning | str, category: Type[Warning], filename: str, lineno: int, file: TextIO | None = ..., line: str | None = ...
+) -> None: ...
+def formatwarning(message: Warning | str, category: Type[Warning], filename: str, lineno: int, line: str | None = ...) -> str: ...
+def filterwarnings(
+    action: _ActionKind,
+    message: str = ...,
+    category: Type[Warning] = ...,
+    module: str = ...,
+    lineno: int = ...,
+    append: bool = ...,
+) -> None: ...
+def simplefilter(action: _ActionKind, category: Type[Warning] = ..., lineno: int = ..., append: bool = ...) -> None: ...
+def resetwarnings() -> None: ...
+
+class _OptionError(Exception): ...
+
+class WarningMessage:
+    message: Warning | str
+    category: Type[Warning]
+    filename: str
+    lineno: int
+    file: TextIO | None
+    line: str | None
+    source: Any | None
+    def __init__(
+        self,
+        message: Warning | str,
+        category: Type[Warning],
+        filename: str,
+        lineno: int,
+        file: TextIO | None = ...,
+        line: str | None = ...,
+        source: Any | None = ...,
+    ) -> None: ...
+
+class catch_warnings:
+    @overload
+    def __new__(cls, *, record: Literal[False] = ..., module: ModuleType | None = ...) -> _catch_warnings_without_records: ...
+    @overload
+    def __new__(cls, *, record: Literal[True], module: ModuleType | None = ...) -> _catch_warnings_with_records: ...
+    @overload
+    def __new__(cls, *, record: bool, module: ModuleType | None = ...) -> catch_warnings: ...
+    def __enter__(self) -> list[WarningMessage] | None: ...
+    def __exit__(
+        self, exc_type: Type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None
+    ) -> None: ...
+
+class _catch_warnings_without_records(catch_warnings):
+    def __enter__(self) -> None: ...
+
+class _catch_warnings_with_records(catch_warnings):
+    def __enter__(self) -> list[WarningMessage]: ...