##// END OF EJS Templates
hg-core: implement timestamp line parsing
hg-core: implement timestamp line parsing

File last commit:

r51654:2c34c9b6 default
r52284:a96ed440 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