view mercurial/cext/base85.pyi @ 50712:0913a49e020c

bundle-spec: add an official method to format a spec into a string This will be useful for automatic-clonebundles.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 21 Jun 2023 15:53:33 +0200
parents 8dca9051a859
children 9367571fea21
line wrap: on
line source

from typing import Optional

version: int

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