Process the specified node and convert the XML document into a I{suds} L{object}. @param content: The current content being unmarshalled. @type content: L{Content} @return: A I{append-result} tuple as: (L{Object}, I{value}) @rtype: I{append-result}
(self, content)
| 52 | return self.append(content) |
| 53 | |
| 54 | def append(self, content): |
| 55 | """ |
| 56 | Process the specified node and convert the XML document into |
| 57 | a I{suds} L{object}. |
| 58 | @param content: The current content being unmarshalled. |
| 59 | @type content: L{Content} |
| 60 | @return: A I{append-result} tuple as: (L{Object}, I{value}) |
| 61 | @rtype: I{append-result} |
| 62 | @note: This is not the proper entry point. |
| 63 | @see: L{process()} |
| 64 | """ |
| 65 | self.start(content) |
| 66 | self.append_attributes(content) |
| 67 | self.append_children(content) |
| 68 | self.append_text(content) |
| 69 | self.end(content) |
| 70 | return self.postprocess(content) |
| 71 | |
| 72 | def postprocess(self, content): |
| 73 | """ |
no test coverage detected