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

File last commit:

r50538:e1c586b9 default
r52284:a96ed440 default
Show More
filters.pyi
6 lines | 215 B | text/x-python | PythonLexer
from typing import Any, Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...