##// END OF EJS Templates
stabletailgraph: naive version of leap computation...
stabletailgraph: naive version of leap computation This adds a naive reference implementation of the computation of leap and specific leap sets (described in the code documentation). The existing tests are enriched accordingly.

File last commit:

r50538:e1c586b9 default
r51421:8fb3e942 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]: ...