view mercurial/cext/base85.pyi @ 49392:34e15bbab67c stable

mergestate: action name was str Apparently the standard for them is still to use byte strings. Found while looking at something else
author Georges Racinet <georges.racinet@octobus.net>
date Tue, 19 Jul 2022 12:41:46 +0200
parents 8dca9051a859
children 9367571fea21
line wrap: on
line source

from typing import Optional

version: int

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