コード例 #1
0
ファイル: literal.py プロジェクト: richshaffer/tornado-suds
 def __init__(self, schema, xstq=True):
     """
     @param schema: A schema object
     @type schema: L{xsd.schema.Schema}
     @param xstq: The B{x}ml B{s}chema B{t}ype B{q}ualified flag indicates
         that the I{xsi:type} attribute values should be qualified by namespace.
     @type xstq: bool
     """
     Core.__init__(self)
     self.schema = schema
     self.xstq = xstq
     self.resolver = GraphResolver(self.schema)