mercurial/cext/mpatch.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 08 Nov 2023 22:11:00 +0100
changeset 51136 591845f89ada
parent 46038 8dca9051a859
permissions -rw-r--r--
cleanup: drop `path.pushloc` deprecated since 6.5 This was scheduled for removal, let us remove it.

from typing import (
    List,
)

version: int

class mpatchError(Exception): ...

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