##// END OF EJS Templates
repo-upgrade: keep the revlog open while cloning...
repo-upgrade: keep the revlog open while cloning This is more explicit. No performance differences were observed.

File last commit:

r51654:2c34c9b6 default
r51909:aed91a44 default
Show More
_types.py
6 lines | 126 B | text/x-python | PythonLexer
from typing import Any, Callable, Tuple
# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int