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