massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / werkzeug / debug / console.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/werkzeug/debug/console.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/werkzeug/debug/console.pyi
new file mode 100644 (file)
index 0000000..087d4b1
--- /dev/null
@@ -0,0 +1,44 @@
+from typing import Any\r
+import code\r
+\r
+class HTMLStringO:\r
+    def __init__(self): ...\r
+    def isatty(self): ...\r
+    def close(self): ...\r
+    def flush(self): ...\r
+    def seek(self, n, mode=0): ...\r
+    def readline(self): ...\r
+    def reset(self): ...\r
+    def write(self, x): ...\r
+    def writelines(self, x): ...\r
+\r
+class ThreadedStream:\r
+    @staticmethod\r
+    def push(): ...\r
+    @staticmethod\r
+    def fetch(): ...\r
+    @staticmethod\r
+    def displayhook(obj): ...\r
+    def __setattr__(self, name, value): ...\r
+    def __dir__(self): ...\r
+    def __getattribute__(self, name): ...\r
+\r
+class _ConsoleLoader:\r
+    def __init__(self): ...\r
+    def register(self, code, source): ...\r
+    def get_source_by_code(self, code): ...\r
+\r
+class _InteractiveConsole(code.InteractiveInterpreter):\r
+    globals = ...  # type: Any\r
+    more = ...  # type: Any\r
+    buffer = ...  # type: Any\r
+    def __init__(self, globals, locals): ...\r
+    def runsource(self, source): ...\r
+    def runcode(self, code): ...\r
+    def showtraceback(self): ...\r
+    def showsyntaxerror(self, filename=None): ...\r
+    def write(self, data): ...\r
+\r
+class Console:\r
+    def __init__(self, globals=None, locals=None): ...\r
+    def eval(self, code): ...\r