Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
()
| 6134 | |
| 6135 | |
| 6136 | def PrintCategories(): |
| 6137 | """Prints a list of all the error-categories used by error messages. |
| 6138 | |
| 6139 | These are the categories used to filter messages via --filter. |
| 6140 | """ |
| 6141 | sys.stderr.write(''.join(' %s\n' % cat for cat in _ERROR_CATEGORIES)) |
| 6142 | sys.exit(0) |
| 6143 | |
| 6144 | |
| 6145 | def ParseArguments(args): |
no test coverage detected