(self, parent, content)
| 278 | """ |
| 279 | |
| 280 | def append(self, parent, content): |
| 281 | if content.tag.startswith('_'): |
| 282 | raise Exception('raw XML not valid as attribute value') |
| 283 | child = ElementWrapper(content.value) |
| 284 | parent.append(child) |
| 285 | |
| 286 | |
| 287 | class ListAppender(Appender): |
nothing calls this directly
no test coverage detected