mercurial/cext/base85.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 10 Oct 2023 11:24:37 +0200
changeset 51064 47d43efda8b7
parent 46042 8dca9051a859
permissions -rw-r--r--
revlog: remove legacy usage of `_withsparseread` All core code is now getting the setting from the DeltaConfig object.

from typing import Optional

version: int

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