Path 1: 168497 calls (0.99)

['--ignore'] (1518) ['--ignore-patterns'] (1488) ['--ignore-paths'] (1488) ['--persistent'] (1488) ['--load-plugins'] (1488) ['--output-format', '-f']...

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

False (168497)

None (153485) 'Reports' (7440) 'Messages control' (4464) 'Commands' (3108)

1def __init__(
2        self,
3        *,
4        flags: list[str],
5        arg_help: str,
6        hide_help: bool,
7        section: str | None,
8    ) -> None:
9        self.flags = flags
10        """The name of the argument."""
11
12        self.hide_help = hide_help
13        """Whether to hide this argument in the help message."""
14
15        # argparse uses % formatting on help strings, so a % needs to be escaped
16        self.help = arg_help.replace("%", "%%")
17        """The description of the argument."""
18
19        if hide_help:
20            self.help = argparse.SUPPRESS
21
22        self.section = section
23        """The section to add this argument to."""
            

Path 2: 1488 calls (0.01)

['--unsafe-load-any-extension'] (1488)

'Allow loading of arbitrary C extensions. Extensions are imported into the active Python interpreter and may run arbitrary code.' (1488)

True (1488)

None (1488)

1def __init__(
2        self,
3        *,
4        flags: list[str],
5        arg_help: str,
6        hide_help: bool,
7        section: str | None,
8    ) -> None:
9        self.flags = flags
10        """The name of the argument."""
11
12        self.hide_help = hide_help
13        """Whether to hide this argument in the help message."""
14
15        # argparse uses % formatting on help strings, so a % needs to be escaped
16        self.help = arg_help.replace("%", "%%")
17        """The description of the argument."""
18
19        if hide_help:
20            self.help = argparse.SUPPRESS
21
22        self.section = section
23        """The section to add this argument to."""