Files
typeshed/stdlib/2.7/markupbase.pyi

10 lines
264 B
Python

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: ...