Lines Matching refs:excluded
281 def add_files_cli(parser, *, excluded=None, nargs=None): argument
282 process_files = add_file_filtering_cli(parser, excluded=excluded)
289 def add_file_filtering_cli(parser, *, excluded=None): argument
294 excluded = tuple(excluded or ())
303 _exclude = excluded + tuple(ns.pop('exclude') or ())
385 excluded = set()
389 excluded.add(kind)
394 if kind in excluded:
395 excluded.remove(kind)
396 if excluded:
399 def match_kind(kind, *, _excluded=excluded):