Prints all the command line options to stderr (or another file). See `OptionParser.print_help`.
(file: Optional[TextIO] = None)
| 729 | |
| 730 | |
| 731 | def print_help(file: Optional[TextIO] = None) -> None: |
| 732 | """Prints all the command line options to stderr (or another file). |
| 733 | |
| 734 | See `OptionParser.print_help`. |
| 735 | """ |
| 736 | return options.print_help(file) |
| 737 | |
| 738 | |
| 739 | def add_parse_callback(callback: Callable[[], None]) -> None: |
nothing calls this directly
no test coverage detected