##// END OF EJS Templates
rust: bump rust-cpython version to 0.7.2...
rust: bump rust-cpython version to 0.7.2 This version supports Python 3.12 while 0.7.1 did not.

File last commit:

r52616:9367571f default
r52762:37a07941 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: ...