Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 4772 | |
| 4773 | |
| 4774 | def PrintCategories(): |
| 4775 | """Prints a list of all the error-categories used by error messages. |
| 4776 | |
| 4777 | These are the categories used to filter messages via --filter. |
| 4778 | """ |
| 4779 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 4780 | sys.exit(0) |
| 4781 | |
| 4782 | |
| 4783 | def ParseArguments(args): |
no test coverage detected