Mercurial > hg
view mercurial/cext/base85.pyi @ 46196:96b73671753a
contrib: py3 compat for perfnodemap
Differential Revision: https://phab.mercurial-scm.org/D9687
author | Joerg Sonnenberger <joerg@bec.de> |
---|---|
date | Wed, 06 Jan 2021 19:41:15 +0100 |
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: ...