massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / mysqlclient / MySQLdb / _mysql.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/mysqlclient/MySQLdb/_mysql.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/mysqlclient/MySQLdb/_mysql.pyi
new file mode 100644 (file)
index 0000000..690e346
--- /dev/null
@@ -0,0 +1,87 @@
+import builtins
+from typing import Any, Tuple
+
+import MySQLdb._exceptions
+
+version_info: Tuple[Any, ...]
+
+class DataError(MySQLdb._exceptions.DatabaseError): ...
+class DatabaseError(MySQLdb._exceptions.Error): ...
+class Error(MySQLdb._exceptions.MySQLError): ...
+class IntegrityError(MySQLdb._exceptions.DatabaseError): ...
+class InterfaceError(MySQLdb._exceptions.Error): ...
+class InternalError(MySQLdb._exceptions.DatabaseError): ...
+class MySQLError(Exception): ...
+class NotSupportedError(MySQLdb._exceptions.DatabaseError): ...
+class OperationalError(MySQLdb._exceptions.DatabaseError): ...
+class ProgrammingError(MySQLdb._exceptions.DatabaseError): ...
+class Warning(builtins.Warning, MySQLdb._exceptions.MySQLError): ...
+
+class connection:
+    client_flag: Any
+    converter: Any
+    open: Any
+    port: Any
+    server_capabilities: Any
+    def __init__(self, *args, **kwargs) -> None: ...
+    def _get_native_connection(self, *args, **kwargs) -> Any: ...
+    def affected_rows(self, *args, **kwargs) -> Any: ...
+    def autocommit(self, on) -> Any: ...
+    def change_user(self, *args, **kwargs) -> Any: ...
+    def character_set_name(self, *args, **kwargs) -> Any: ...
+    def close(self, *args, **kwargs) -> Any: ...
+    def commit(self, *args, **kwargs) -> Any: ...
+    def dump_debug_info(self, *args, **kwargs) -> Any: ...
+    def errno(self, *args, **kwargs) -> Any: ...
+    def error(self, *args, **kwargs) -> Any: ...
+    def escape(self, obj, dict) -> Any: ...
+    def escape_string(self, s) -> Any: ...
+    def field_count(self, *args, **kwargs) -> Any: ...
+    def fileno(self, *args, **kwargs) -> Any: ...
+    def get_autocommit(self, *args, **kwargs) -> Any: ...
+    def get_character_set_info(self, *args, **kwargs) -> Any: ...
+    def get_host_info(self, *args, **kwargs) -> Any: ...
+    def get_proto_info(self, *args, **kwargs) -> Any: ...
+    def get_server_info(self, *args, **kwargs) -> Any: ...
+    def info(self, *args, **kwargs) -> Any: ...
+    def insert_id(self, *args, **kwargs) -> Any: ...
+    def kill(self, *args, **kwargs) -> Any: ...
+    def next_result(self) -> Any: ...
+    def ping(self) -> Any: ...
+    def query(self, query) -> Any: ...
+    def read_query_result(self, *args, **kwargs) -> Any: ...
+    def rollback(self, *args, **kwargs) -> Any: ...
+    def select_db(self, *args, **kwargs) -> Any: ...
+    def send_query(self, *args, **kwargs) -> Any: ...
+    def set_character_set(self, charset) -> Any: ...
+    def set_server_option(self, option) -> Any: ...
+    def shutdown(self, *args, **kwargs) -> Any: ...
+    def sqlstate(self, *args, **kwargs) -> Any: ...
+    def stat(self, *args, **kwargs) -> Any: ...
+    def store_result(self, *args, **kwargs) -> Any: ...
+    def string_literal(self, obj) -> Any: ...
+    def thread_id(self, *args, **kwargs) -> Any: ...
+    def use_result(self, *args, **kwargs) -> Any: ...
+    def warning_count(self, *args, **kwargs) -> Any: ...
+    def __delattr__(self, name) -> Any: ...
+    def __setattr__(self, name, value) -> Any: ...
+
+class result:
+    converter: Any
+    has_next: Any
+    def __init__(self, *args, **kwargs) -> None: ...
+    def data_seek(self, n) -> Any: ...
+    def describe(self, *args, **kwargs) -> Any: ...
+    def fetch_row(self, *args, **kwargs) -> Any: ...
+    def field_flags(self, *args, **kwargs) -> Any: ...
+    def num_fields(self, *args, **kwargs) -> Any: ...
+    def num_rows(self, *args, **kwargs) -> Any: ...
+    def __delattr__(self, name) -> Any: ...
+    def __setattr__(self, name, value) -> Any: ...
+
+def connect(*args, **kwargs) -> Any: ...
+def debug(*args, **kwargs) -> Any: ...
+def escape(obj, dict) -> Any: ...
+def escape_string(s) -> Any: ...
+def get_client_info() -> Any: ...
+def string_literal(obj) -> Any: ...