mercurial/cext/base85.pyi
author Raphaël Gomès <rgomes@octobus.net>
Wed, 23 Mar 2022 17:16:10 +0100
changeset 49111 8a17fc501eda
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
rust-dirstatemap: remove `removefile` API Its callers have been migrated to the newer dirstate API. Differential Revision: https://phab.mercurial-scm.org/D12509

from typing import Optional

version: int

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