Path 1: 1 calls (1.0)

PyLinter (1)

StringIO (1)

True (1)

1def print_full_documentation(
2    linter: PyLinter, stream: TextIO = sys.stdout, show_options: bool = True
3) -> None:
4    """Output a full documentation in ReST format."""
5    print(
6        _get_checkers_documentation(linter, show_options=show_options)[:-3], file=stream
7    )