mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
7 lines
238 B
Python
7 lines
238 B
Python
class ParserBase(object):
|
|
def __init__(self) -> None: ...
|
|
def error(self, message: str) -> None: ...
|
|
def reset(self) -> None: ...
|
|
def getpos(self) -> tuple[int, int]: ...
|
|
def unknown_decl(self, data: str) -> None: ...
|