mpatch.pyi
10 lines
| 193 B
| text/x-python
|
PythonLexer
Gregory Szorc
|
r46652 | from typing import ( | ||
List, | ||||
) | ||||
version: int | ||||
class mpatchError(Exception): ... | ||||
def patches(text: bytes, bins: List[bytes]) -> bytes: ... | ||||
def patchedsize(orig: int, data: bytes) -> int: ... | ||||