##// END OF EJS Templates
graft: trim an InputError message...
graft: trim an InputError message This goes all the way back to its introduction in 3c0d5016b2be. There don't seem to be any i18n strings right now, nor any test coverage, but I suspect this was a mistake. Smaller, more digestable files FTW.

File last commit:

r50491:b8389533 default
r53245:99615755 default
Show More
bdiff.pyi
12 lines | 348 B | text/x-python | PythonLexer
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]]: ...