view mercurial/cext/mpatch.pyi @ 48767:654baf1faa52

revlog: memset whole record instead of dealing with padding This is less error-prone. Differential Revision: https://phab.mercurial-scm.org/D12177
author pacien <pacien.trangirard@pacien.net>
date Thu, 10 Feb 2022 16:20:14 +0100
parents 8dca9051a859
children
line wrap: on
line source

from typing import (
    List,
)

version: int

class mpatchError(Exception): ...

def patches(text: bytes, bins: List[bytes]) -> bytes: ...
def patchedsize(orig: int, data: bytes) -> int: ...