massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / pyclbr.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/pyclbr.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2and3/pyclbr.pyi
new file mode 100644 (file)
index 0000000..a15df54
--- /dev/null
@@ -0,0 +1,40 @@
+from typing import List, Union, Sequence, Optional, Dict\r
+\r
+\r
+class Class:\r
+    module = ...  # type: str\r
+    name = ...  # type: str\r
+    super = ...  # type: Optional[List[Union["Class", str]]]\r
+    methods = ...  # type: Dict[str, int]\r
+    file = ...  # type: int\r
+    lineno = ...  # type: int\r
+\r
+    def __init__(self,\r
+                 module: str,\r
+                 name: str,\r
+                 super: Optional[List[Union["Class", str]]],\r
+                 file: str,\r
+                 lineno: int) -> None: ...\r
+\r
+\r
+class Function:\r
+    module = ...  # type: str\r
+    name = ...  # type: str\r
+    file = ...  # type: int\r
+    lineno = ...  # type: int\r
+\r
+    def __init__(self,\r
+                 module: str,\r
+                 name: str,\r
+                 file: str,\r
+                 lineno: int) -> None: ...\r
+\r
+\r
+def readmodule(module: str,\r
+               path: Optional[Sequence[str]] = ...\r
+               ) -> Dict[str, Class]: ...\r
+\r
+\r
+def readmodule_ex(module: str,\r
+                  path: Optional[Sequence[str]] = ...\r
+                  ) -> Dict[str, Union[Class, Function, List[str]]]: ...\r