mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-19 10:21:14 +08:00
Add stubs for HTMLParser, html.parser, and six.moves.html_parser.
This commit is contained in:
9
stdlib/2.7/markupbase.pyi
Normal file
9
stdlib/2.7/markupbase.pyi
Normal 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: ...
|
||||
Reference in New Issue
Block a user