(self, name, attrs)
| 30 | XMLGenerator.characters(self, content) |
| 31 | |
| 32 | def startElement(self, name, attrs): |
| 33 | # Sort attrs for a deterministic output. |
| 34 | sorted_attrs = dict(sorted(attrs.items())) if attrs else attrs |
| 35 | super().startElement(name, sorted_attrs) |
no test coverage detected