mercurial/cext/base85.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 26 Feb 2024 15:23:45 +0100
changeset 51463 87b830e4de35
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
branchcache: move the header loading in a `_load_header` class method This will help changing header parsing in format variants.

from typing import Optional

version: int

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