本文整理汇总了Python中suds.sax.Namespace.none方法的典型用法代码示例。如果您正苦于以下问题:Python Namespace.none方法的具体用法?Python Namespace.none怎么用?Python Namespace.none使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类suds.sax.Namespace
的用法示例。
在下文中一共展示了Namespace.none方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: qualify
# 需要导入模块: from suds.sax import Namespace [as 别名]
# 或者: from suds.sax.Namespace import none [as 别名]
def qualify(self):
"""
Convert attribute values, that are references to other
objects, into I{qref}. Qualified using the default document namespace.
Since many WSDLs are written improperly: when the document does
not define its default namespace, the schema target namespace is used
to qualify references.
"""
defns = self.root.defaultNamespace()
if Namespace.none(defns):
defns = self.schema.tns
for a in self.autoqualified():
ref = getattr(self, a)
if ref is None:
continue
if isqref(ref):
continue
qref = qualify(ref, self.root, defns)
log.debug('%s, convert %s="%s" to %s', self.id, a, ref, qref)
setattr(self, a, qref)