Mercurial > hg
view mercurial/cext/base85.pyi @ 52170:1a8466fd904a
hg-core: add fncache module
For now it's only a super simple trait. It will be used for calling back into
Python soon, and later will be fleshed out into a full fncache.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Mon, 29 Jul 2024 20:28:42 +0200 |
parents | 9367571fea21 |
children |
line wrap: on
line source
version: int def b85encode(text: bytes, pad: bool = False) -> bytes: ... def b85decode(text: bytes) -> bytes: ...