view mercurial/cext/base85.pyi @ 52158:0744248cc541

rust-revlog: add compression helpers This will be used in the upcoming `InnerRevlog` when reading/writing data.
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 25 Sep 2024 16:42:21 +0200
parents 9367571fea21
children
line wrap: on
line source

version: int

def b85encode(text: bytes, pad: bool = False) -> bytes: ...
def b85decode(text: bytes) -> bytes: ...