author | Simon Sapin <simon.sapin@octobus.net> |
Mon, 08 Feb 2021 23:08:44 +0100 | |
changeset 46504 | 2e5dd18d6dc3 |
parent 46038 | 8dca9051a859 |
child 49596 | b8389533ba3a |
permissions | -rw-r--r-- |
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]]: ...