MCPcopy Create free account
hub / github.com/ronreiter/interactive-tutorials / append

Method append

suds/umx/core.py:54–70  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 4

processMethod · 0.95
append_childrenMethod · 0.95
typed.pyFile · 0.45
encoded.pyFile · 0.45

Calls 6

startMethod · 0.95
append_attributesMethod · 0.95
append_childrenMethod · 0.95
append_textMethod · 0.95
endMethod · 0.95
postprocessMethod · 0.95

Tested by

no test coverage detected