massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / concurrent / futures / thread.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/concurrent/futures/thread.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/concurrent/futures/thread.pyi
new file mode 100644 (file)
index 0000000..d19f6ea
--- /dev/null
@@ -0,0 +1,10 @@
+from typing import Optional\r
+from ._base import Executor, Future\r
+import sys\r
+\r
+class ThreadPoolExecutor(Executor):\r
+    if sys.version_info >= (3, 6) or sys.version_info < (3,):\r
+        def __init__(self, max_workers: Optional[int] = ...,\r
+                     thread_name_prefix: str = ...) -> None: ...\r
+    else:\r
+        def __init__(self, max_workers: Optional[int] = ...) -> None: ...\r