(opt_groups)
| 151 | |
| 152 | |
| 153 | def _read_groups(opt_groups): |
| 154 | opt_groups = collections.OrderedDict(sorted(opt_groups.items())) |
| 155 | for name, opt_group in six.iteritems(opt_groups): |
| 156 | print("[%s]" % name) |
| 157 | _read_group(opt_group) |
| 158 | print("") |
| 159 | |
| 160 | |
| 161 | def _print_options(opt_group, options): |