Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 7788 | |
| 7789 | |
| 7790 | def PrintCategories(): |
| 7791 | """Prints a list of all the error-categories used by error messages. |
| 7792 | |
| 7793 | These are the categories used to filter messages via --filter. |
| 7794 | """ |
| 7795 | sys.stderr.write("".join(f" {cat}\n" for cat in _ERROR_CATEGORIES)) |
| 7796 | sys.exit(0) |
| 7797 | |
| 7798 | |
| 7799 | def ParseArguments(args): |
no test coverage detected
searching dependent graphs…