massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / glob.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/glob.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/glob.pyi
new file mode 100644 (file)
index 0000000..c1cd176
--- /dev/null
@@ -0,0 +1,21 @@
+import sys
+from _typeshed import StrOrBytesPath
+from typing import AnyStr, Iterator
+
+def glob0(dirname: AnyStr, pattern: AnyStr) -> list[AnyStr]: ...
+def glob1(dirname: AnyStr, pattern: AnyStr) -> list[AnyStr]: ...
+
+if sys.version_info >= (3, 10):
+    def glob(
+        pathname: AnyStr, *, root_dir: StrOrBytesPath | None = ..., dir_fd: int | None = ..., recursive: bool = ...
+    ) -> list[AnyStr]: ...
+    def iglob(
+        pathname: AnyStr, *, root_dir: StrOrBytesPath | None = ..., dir_fd: int | None = ..., recursive: bool = ...
+    ) -> Iterator[AnyStr]: ...
+
+else:
+    def glob(pathname: AnyStr, *, recursive: bool = ...) -> list[AnyStr]: ...
+    def iglob(pathname: AnyStr, *, recursive: bool = ...) -> Iterator[AnyStr]: ...
+
+def escape(pathname: AnyStr) -> AnyStr: ...
+def has_magic(s: str | bytes) -> bool: ...  # undocumented