mercurial/cext/base85.pyi
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 20 Jan 2022 16:16:05 -0800
changeset 48608 fd9fe2658cda
parent 46042 8dca9051a859
permissions -rw-r--r--
filemerge: pass `simplemerge.MergeInput` to tool functions Differential Revision: https://phab.mercurial-scm.org/D12018

from typing import Optional

version: int

def b85encode(text: bytes, pad: Optional[int]) -> bytes: ...
def b85decode(text: bytes) -> bytes: ...