コード例 #1
0
 def signature(self, schema=None, standalone=True):
     name = create_prefixed_name(self.qname, schema)
     if standalone:
         return '%s(%s)' % (name,
                            self.child.signature(schema, standalone=False))
     else:
         return self.child.signature(schema, standalone=False)
コード例 #2
0
ファイル: indicators.py プロジェクト: tobirl/python-zeep
 def signature(self, schema=None, standalone=True):
     name = create_prefixed_name(self.qname, schema)
     if standalone:
         return '%s(%s)' % (
             name, self.child.signature(schema, standalone=False))
     else:
         return self.child.signature(schema, standalone=False)
コード例 #3
0
ファイル: element.py プロジェクト: simonschmidt/python-zeep
 def get_prefixed_name(self, schema):
     return create_prefixed_name(self.qname, schema)
コード例 #4
0
ファイル: element.py プロジェクト: ovnicraft/python-zeep
 def get_prefixed_name(self, schema):
     return create_prefixed_name(self.qname, schema)