mercurial/cext/mpatch.pyi
author Raphaël Gomès <rgomes@octobus.net>
Wed, 06 Sep 2023 18:10:44 +0200
branchstable
changeset 50933 5a8b54201039
parent 46038 8dca9051a859
permissions -rw-r--r--
relnotes: add 6.5.2

from typing import (
    List,
)

version: int

class mpatchError(Exception): ...

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