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

Method process

suds/mx/basic.py:33–47  ·  view source on GitHub ↗

Process (marshal) the tag with the specified value using the optional type information. @param value: The value (content) of the XML node. @type value: (L{Object}|any) @param tag: The (optional) tag name for the value. The default is value.__clas

(self, value, tag=None)

Source from the content-addressed store, hash-verified

31 """
32
33 def process(self, value, tag=None):
34 """
35 Process (marshal) the tag with the specified value using the
36 optional type information.
37 @param value: The value (content) of the XML node.
38 @type value: (L{Object}|any)
39 @param tag: The (optional) tag name for the value. The default is
40 value.__class__.__name__
41 @type tag: str
42 @return: An xml node.
43 @rtype: L{Element}
44 """
45 content = Content(tag=tag, value=value)
46 result = Core.process(self, content)
47 return result

Callers

nothing calls this directly

Calls 1

ContentClass · 0.90

Tested by

no test coverage detected