Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 6707 | sys.exit(0) |
| 6708 | |
| 6709 | def PrintCategories(): |
| 6710 | """Prints a list of all the error-categories used by error messages. |
| 6711 | |
| 6712 | These are the categories used to filter messages via --filter. |
| 6713 | """ |
| 6714 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 6715 | sys.exit(0) |
| 6716 | |
| 6717 | |
| 6718 | def ParseArguments(args): |
no test coverage detected