Append the specified L{content} to the I{parent}. @param content: The content to append. @type content: L{Object}
(self, parent, content)
| 174 | self.marshaller.resume(content) |
| 175 | |
| 176 | def append(self, parent, content): |
| 177 | """ |
| 178 | Append the specified L{content} to the I{parent}. |
| 179 | @param content: The content to append. |
| 180 | @type content: L{Object} |
| 181 | """ |
| 182 | self.marshaller.append(parent, content) |
| 183 | |
| 184 | |
| 185 | class PrimativeAppender(Appender): |