##// END OF EJS Templates
dirstate: use a `added` parameter to _addpath...
dirstate: use a `added` parameter to _addpath My next target are the explicit `state` byte, so let start with abstracting their initial storage. Differential Revision: https://phab.mercurial-scm.org/D10967

File last commit:

r46652:8dca9051 default
r48314:fe4641cf default
Show More
base85.pyi
6 lines | 145 B | text/x-python | PythonLexer
Gregory Szorc
cext: add .pyi files for C extensions...
r46652 from typing import Optional
version: int
def b85encode(text: bytes, pad: Optional[int]) -> bytes: ...
def b85decode(text: bytes) -> bytes: ...