mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
10 lines
265 B
Python
10 lines
265 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 unknown_decl(self, data: str) -> None: ...
|