Mercurial > hg
view mercurial/cext/base85.pyi @ 48883:f0c445a8e324
mail: delete conditional code for Python 2
Differential Revision: https://phab.mercurial-scm.org/D12286
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 21 Feb 2022 10:20:48 -0700 |
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: ...