##// END OF EJS Templates
import: fix erroneous comparison of str with bytes
import: fix erroneous comparison of str with bytes

File last commit:

r52616:9367571f default
r52689:8f629783 stable
Show More
base85.pyi
6 lines | 145 B | text/x-python | PythonLexer
from typing import Optional
version: int
def b85encode(text: bytes, pad: Optional[int]) -> bytes: ...
def b85decode(text: bytes) -> bytes: ...