MCPcopy Create free account
hub / github.com/ActiveState/code / __init__

Method __init__

recipes/Python/298721_xml2obj_II/recipe-298721.py:79–85  ·  view source on GitHub ↗
( self, name, parent, dictAttributes )

Source from the content-addressed store, hash-verified

77class xmlElement:
78
79 def __init__( self, name, parent, dictAttributes ):
80 self.data = None
81 self.name = name
82 self.parent = parent
83 self.dictAttributes = dictAttributes
84 self.listChildren = [ ]
85 self.dictData = { }
86
87
88 def __str__( self ):

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected