mercurial/cext/base85.pyi
author Matt Harbison <matt_harbison@yahoo.com>
Mon, 09 Aug 2021 19:36:26 -0400
branchstable
changeset 47813 7a0d7c34e0ab
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
contrib: comment out the 64-bit py38 dependency installation on Windows Not sure what is going on here, but it appears to not install py3.8 x64 in the usual `C:\hgdev` directory. The x32 installer works fine. I'm assuming this is a bug in this version of the installer, but didn't look into it too much. Differential Revision: https://phab.mercurial-scm.org/D11274

from typing import Optional

version: int

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