Path 1: 3096 calls (1.0)

['--ignore'] (1518) ['--ignore-patterns'] (1488) ['--filter-mode', '-f'] (30) ['--output', '-o'] (30) ['--max-color-depth'] (30)

('CVS',) (1518) tuple (1488) 'PUB_ONLY' (30) 'dot' (30) 2 (30)

'csv' (1518) 'regexp_csv' (1488) 'string' (60) 'int' (30)

None (3096)

'Files or directories to be skipped. They should be base names, not paths.' (1518) 'Files or directories matching the regular expression patterns are ...

'[,...]' (1488) '[,...]' (1488) '' (30) '' (30) '' (30) '' (30)

False (3096)

dict (3096)

None (3096)

1def __init__(
2        self,
3        *,
4        flags: list[str],
5        default: _ArgumentTypes,
6        arg_type: str,
7        choices: list[str] | None,
8        arg_help: str,
9        metavar: str,
10        hide_help: bool,
11        kwargs: dict[str, Any],
12        section: str | None,
13    ) -> None:
14        super().__init__(
15            flags=flags,
16            action=_OldNamesAction,
17            default=default,
18            arg_type=arg_type,
19            choices=choices,
20            arg_help=arg_help,
21            metavar=metavar,
22            hide_help=hide_help,
23            section=section,
24        )
25
26        self.kwargs = kwargs
27        """Any additional arguments passed to the action."""