Add stubs for HTMLParser, html.parser, and six.moves.html_parser.

This commit is contained in:
Tim Abbott
2016-01-27 17:30:36 -08:00
parent 73dfe84342
commit 9db84e7ffe
7 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from typing import Tuple
class ParserBase(object):
def __init__(self) -> None: ...
def error(self, message: str) -> None: ...
def reset(self) -> None: ...
def getpos(self) -> Tuple[int, int]: ...
def unkown_decl(self, data: str) -> None: ...