mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
9 lines
256 B
Python
9 lines
256 B
Python
from typing import Tuple
|
|
|
|
class ParserBase:
|
|
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: ...
|