mercurial/cext/base85.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 02 Dec 2020 15:24:10 +0100
changeset 46156 7d99614b7b77
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
copies-rust: make the comparison aware of the revision being current merged This make no significant performance change in practice (all ±2%) in practice, but it will help us to distinct between some semantically different cases later on. Differential Revision: https://phab.mercurial-scm.org/D9498

from typing import Optional

version: int

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