mercurial/cext/base85.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 27 May 2022 02:52:46 +0200
changeset 49238 6aae0e1ecdbc
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
test-revlog: adds a non-root revision with a delta against nullrev Using a revision with non-null parents makes it a different case that is worthy of testing.

from typing import Optional

version: int

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