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

Method __init__

suds/mx/__init__.py:36–47  ·  view source on GitHub ↗

@param tag: The content tag. @type tag: str @param value: The content's value. @type value: I{any}

(self, tag=None, value=None, **kwargs)

Source from the content-addressed store, hash-verified

34 extensions = []
35
36 def __init__(self, tag=None, value=None, **kwargs):
37 """
38 @param tag: The content tag.
39 @type tag: str
40 @param value: The content's value.
41 @type value: I{any}
42 """
43 Object.__init__(self)
44 self.tag = tag
45 self.value = value
46 for k, v in kwargs.items():
47 setattr(self, k, v)
48
49 def __getattr__(self, name):
50 if name not in self.__dict__:

Callers

nothing calls this directly

Calls 1

itemsMethod · 0.45

Tested by

no test coverage detected