(self, actions)
| 37 | |
| 38 | class SortingHelpFormatter(HelpFormatter): |
| 39 | def add_arguments(self, actions): |
| 40 | actions = sorted(actions, key=attrgetter('option_strings')) |
| 41 | super(SortingHelpFormatter, self).add_arguments(actions) |
| 42 | |
| 43 | |
| 44 | def is_windows(): |
nothing calls this directly
no outgoing calls
no test coverage detected