mercurial/cext/base85.pyi
author Raphaël Gomès <rgomes@octobus.net>
Thu, 03 Nov 2022 15:57:37 +0100
branchstable
changeset 49566 05ef5f097df4
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
rhg: stop shadowing `exit` function This will be useful for the next patch which needs it.

from typing import Optional

version: int

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