massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / distutils / util.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/distutils/util.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/distutils/util.pyi
new file mode 100644 (file)
index 0000000..f8f69a1
--- /dev/null
@@ -0,0 +1,20 @@
+# Stubs for distutils.util\r
+\r
+from typing import Any, Callable, List, Mapping, Optional, Tuple\r
+\r
+\r
+def get_platform() -> str: ...\r
+def convert_path(pathname: str) -> str: ...\r
+def change_root(new_root: str, pathname: str) -> str: ...\r
+def check_environ() -> None: ...\r
+def subst_vars(s: str, local_vars: Mapping[str, str]) -> None: ...\r
+def split_quoted(s: str) -> List[str]: ...\r
+def execute(func: Callable[..., None], args: Tuple[Any, ...],\r
+            msg: Optional[str] = ..., verbose: bool = ...,\r
+            dry_run: bool = ...) -> None: ...\r
+def strtobool(val: str) -> bool: ...\r
+def byte_compile(py_files: List[str], optimize: int = ..., force: bool = ...,\r
+                 prefix: Optional[str] = ..., base_dir: Optional[str] = ...,\r
+                 verbose: bool = ..., dry_run: bool = ...,\r
+                 direct: Optional[bool] = ...) -> None: ...\r
+def rfc822_escape(header: str) -> str: ...\r