##// END OF EJS Templates
phases: pass an unfiltered repository to _ensure_phase_sets...
phases: pass an unfiltered repository to _ensure_phase_sets It seems better for such a low level function to be able to assume it operate on a real repository.

File last commit:

r51654:2c34c9b6 default
r52310:e0d32949 default
Show More
_types.py
6 lines | 126 B | text/x-python | PythonLexer
Raphaël Gomès
thirdparty: vendor tomli...
r51654 from typing import Any, Callable, Tuple
# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int