view mercurial/cext/base85.pyi @ 51498:99072b02138f stable

Added signature for changeset 028dc3f92dbd
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 06 May 2024 18:48:37 +0200
parents 8dca9051a859
children
line wrap: on
line source

from typing import Optional

version: int

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