(self, parent, content)
| 205 | """ |
| 206 | |
| 207 | def append(self, parent, content): |
| 208 | child = self.node(content) |
| 209 | default = self.setdefault(child, content) |
| 210 | if default is None: |
| 211 | self.setnil(child, content) |
| 212 | parent.append(child) |
| 213 | |
| 214 | |
| 215 | class PropertyAppender(Appender): |
nothing calls this directly
no test coverage detected