mercurial/cext/base85.pyi
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 21 Jun 2021 09:54:36 -0700
changeset 47459 de54d11040e7
parent 46038 8dca9051a859
child 51723 9367571fea21
permissions -rw-r--r--
rebase: keep str-keyed opts long enough to make `action` a str This is just another little py3 cleanup. Differential Revision: https://phab.mercurial-scm.org/D10891

from typing import Optional

version: int

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