1 from typing import (
2 List,
3 )
4
5 version: int
6
7 class mpatchError(Exception): ...
8
9 def patches(text: bytes, bins: List[bytes]) -> bytes: ...
10 def patchedsize(orig: int, data: bytes) -> int: ...