Process an object graph representation of the xml I{node}. @param content: The current content being unmarshalled. @type content: L{Content} @return: A suds object. @rtype: L{Object}
(self, content)
| 41 | """ |
| 42 | |
| 43 | def process(self, content): |
| 44 | """ |
| 45 | Process an object graph representation of the xml I{node}. |
| 46 | @param content: The current content being unmarshalled. |
| 47 | @type content: L{Content} |
| 48 | @return: A suds object. |
| 49 | @rtype: L{Object} |
| 50 | """ |
| 51 | self.reset() |
| 52 | return self.append(content) |
| 53 | |
| 54 | def append(self, content): |
| 55 | """ |