view mercurial/cext/base85.pyi @ 46831:7d80622fc212

rebase: let _handleskippingobsolete(self) read directly from self The function already has `self` as an argument, so there's no need to pass data from `self` into it. Differential Revision: https://phab.mercurial-scm.org/D10246
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 12 Feb 2021 16:19:33 -0800
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: ...