Mercurial > hg
view mercurial/cext/base85.pyi @ 48167:1b0f8aafedea
merge: with stable
author | Augie Fackler <augie@google.com> |
---|---|
date | Thu, 07 Oct 2021 10:23:57 -0400 |
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: ...