mercurial/cext/base85.pyi
author pierre-yves.david@ens-lyon.org
Mon, 19 Jun 2023 23:27:18 +0200
changeset 50684 db9b6ce803a9
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
infinitepush: aggressively deprecated infinite push We add a large warning and an explicit abort. Both can be disable through config, but neither are explicitly documented. If any user exists I really want them to get in touch with the community.

from typing import Optional

version: int

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