##// END OF EJS Templates
manifest: use read_delta_new_entries in verify too...
manifest: use read_delta_new_entries in verify too This seems like the proper semantic for the usage.

File last commit:

r46652:8dca9051 default
r52680:73b9558a default
Show More
mpatch.pyi
10 lines | 193 B | text/x-python | PythonLexer
from typing import (
List,
)
version: int
class mpatchError(Exception): ...
def patches(text: bytes, bins: List[bytes]) -> bytes: ...
def patchedsize(orig: int, data: bytes) -> int: ...