Turn sets into multiple line strings.
(self)
| 75 | raise RuntimeError("Action not understood, must be verbatim or set") |
| 76 | |
| 77 | def post_process(self): |
| 78 | """ |
| 79 | Turn sets into multiple line strings. |
| 80 | """ |
| 81 | for key in self: |
| 82 | if isinstance(self[key], set): |
| 83 | self[key] = "\n".join(sorted(self[key])) |
| 84 | |
| 85 | |
| 86 | def make_header(output, main_header, files, tag, namespace, macro=None, version=None): |