massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / click / click / utils.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/click/click/utils.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/click/click/utils.pyi
new file mode 100644 (file)
index 0000000..f97dd8e
--- /dev/null
@@ -0,0 +1,48 @@
+from types import TracebackType
+from typing import IO, Any, AnyStr, Generic, Iterator, Text, Type, TypeVar
+
+_T = TypeVar("_T")
+
+def _posixify(name: str) -> str: ...
+def safecall(func: _T) -> _T: ...
+def make_str(value: Any) -> str: ...
+def make_default_short_help(help: str, max_length: int = ...) -> str: ...
+
+class LazyFile(object):
+    name: str
+    mode: str
+    encoding: str | None
+    errors: str
+    atomic: bool
+    def __init__(
+        self, filename: str, mode: str = ..., encoding: str | None = ..., errors: str = ..., atomic: bool = ...
+    ) -> None: ...
+    def open(self) -> IO[Any]: ...
+    def close(self) -> None: ...
+    def close_intelligently(self) -> None: ...
+    def __enter__(self) -> LazyFile: ...
+    def __exit__(
+        self, exctype: Type[BaseException] | None, excinst: BaseException | None, exctb: TracebackType | None
+    ) -> None: ...
+    def __iter__(self) -> Iterator[Any]: ...
+
+class KeepOpenFile(Generic[AnyStr]):
+    _file: IO[AnyStr]
+    def __init__(self, file: IO[AnyStr]) -> None: ...
+    def __enter__(self) -> KeepOpenFile[AnyStr]: ...
+    def __exit__(
+        self, exctype: Type[BaseException] | None, excinst: BaseException | None, exctb: TracebackType | None
+    ) -> None: ...
+    def __iter__(self) -> Iterator[AnyStr]: ...
+
+def echo(
+    message: object = ..., file: IO[Text] | None = ..., nl: bool = ..., err: bool = ..., color: bool | None = ...
+) -> None: ...
+def get_binary_stream(name: str) -> IO[bytes]: ...
+def get_text_stream(name: str, encoding: str | None = ..., errors: str = ...) -> IO[str]: ...
+def open_file(
+    filename: str, mode: str = ..., encoding: str | None = ..., errors: str = ..., lazy: bool = ..., atomic: bool = ...
+) -> Any: ...  # really IO | LazyFile | KeepOpenFile
+def get_os_args() -> list[str]: ...
+def format_filename(filename: str, shorten: bool = ...) -> str: ...
+def get_app_dir(app_name: str, roaming: bool = ..., force_posix: bool = ...) -> str: ...