mercurial/cext/base85.pyi
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 09 Jun 2021 19:47:29 +0200
changeset 47461 f93a867a6486
parent 46042 8dca9051a859
permissions -rw-r--r--
revlog: list older-but-still-around file in `files` These older files will eventually be removed, but we have to take them in account until they are. So we update `files` to keep fncache happy. Differential Revision: https://phab.mercurial-scm.org/D10868

from typing import Optional

version: int

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