massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / HTMLParser.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2/HTMLParser.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2/HTMLParser.pyi
new file mode 100644 (file)
index 0000000..c2887d2
--- /dev/null
@@ -0,0 +1,31 @@
+from typing import List, Tuple, AnyStr\r
+from markupbase import ParserBase\r
+\r
+class HTMLParser(ParserBase):\r
+    def __init__(self) -> None: ...\r
+    def feed(self, feed: AnyStr) -> None: ...\r
+    def close(self) -> None: ...\r
+    def reset(self) -> None: ...\r
+\r
+    def get_starttag_text(self) -> AnyStr: ...\r
+    def set_cdata_mode(self, AnyStr) -> None: ...\r
+    def clear_cdata_mode(self) -> None: ...\r
+\r
+    def handle_startendtag(self, tag: AnyStr, attrs: List[Tuple[AnyStr, AnyStr]]): ...\r
+    def handle_starttag(self, tag: AnyStr, attrs: List[Tuple[AnyStr, AnyStr]]): ...\r
+    def handle_endtag(self, tag: AnyStr): ...\r
+    def handle_charref(self, name: AnyStr): ...\r
+    def handle_entityref(self, name: AnyStr): ...\r
+    def handle_data(self, data: AnyStr): ...\r
+    def handle_comment(self, data: AnyStr): ...\r
+    def handle_decl(self, decl: AnyStr): ...\r
+    def handle_pi(self, data: AnyStr): ...\r
+\r
+    def unknown_decl(self, data: AnyStr): ...\r
+\r
+    def unescape(self, s: AnyStr) -> AnyStr: ...\r
+\r
+class HTMLParseError(Exception):\r
+    msg = ...  # type: str\r
+    lineno = ...  # type: int\r
+    offset = ...  # type: int\r