massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / importlib / resources.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/importlib/resources.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/importlib/resources.pyi
new file mode 100644 (file)
index 0000000..194c0ba
--- /dev/null
@@ -0,0 +1,25 @@
+import sys
+from typing import Any
+
+# This is a >=3.7 module, so we conditionally include its source.
+if sys.version_info >= (3, 7):
+    import os
+    from contextlib import AbstractContextManager
+    from pathlib import Path
+    from types import ModuleType
+    from typing import BinaryIO, Iterator, TextIO, Union
+
+    Package = Union[str, ModuleType]
+    Resource = Union[str, os.PathLike[Any]]
+    def open_binary(package: Package, resource: Resource) -> BinaryIO: ...
+    def open_text(package: Package, resource: Resource, encoding: str = ..., errors: str = ...) -> TextIO: ...
+    def read_binary(package: Package, resource: Resource) -> bytes: ...
+    def read_text(package: Package, resource: Resource, encoding: str = ..., errors: str = ...) -> str: ...
+    def path(package: Package, resource: Resource) -> AbstractContextManager[Path]: ...
+    def is_resource(package: Package, name: str) -> bool: ...
+    def contents(package: Package) -> Iterator[str]: ...
+
+if sys.version_info >= (3, 9):
+    from importlib.abc import Traversable
+    def files(package: Package) -> Traversable: ...
+    def as_file(path: Traversable) -> AbstractContextManager[Path]: ...