view mercurial/cext/bdiff.pyi @ 49294:b2e05a8e15d1

py3: replace mention of “xrange” in docstring by “range”
author Manuel Jacob <me@manueljacob.de>
date Sun, 29 May 2022 15:33:39 +0200
parents 8dca9051a859
children b8389533ba3a
line wrap: on
line source

from typing import (
    List,
    Tuple,
)

version: int

def bdiff(a: bytes, b: bytes): bytes
def blocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...
def fixws(s: bytes, allws: bool) -> bytes: ...
def splitnewlines(text: bytes) -> List[bytes]: ...
def xdiffblocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...