mercurial/cext/mpatch.pyi
author Cédric Krier <ced@b2ck.com>
Thu, 26 Jan 2023 00:23:07 +0100
changeset 50018 2282d8ac0fa9
parent 46042 8dca9051a859
permissions -rw-r--r--
filemerge: add union-other-first as internal merge tool See inline documentation for details.

from typing import (
    List,
)

version: int

class mpatchError(Exception): ...

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