mercurial/cext/base85.pyi
author Matt Harbison <matt_harbison@yahoo.com>
Thu, 20 May 2021 19:30:56 -0400
changeset 47324 b1ce93dcdf3c
parent 46042 8dca9051a859
child 51782 9367571fea21
permissions -rw-r--r--
tests: fix test-transaction-safety.t on Windows Mostly this is about `C:\dir\sub` style paths being turned into `C:dirsub` by MSYS, and not being about to execute shell scripts in hooks directly. See also a12819559ccb::9e3979a25bfe. Differential Revision: https://phab.mercurial-scm.org/D10762

from typing import Optional

version: int

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