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

Method qname

suds/sax/element.py:134–143  ·  view source on GitHub ↗

Get the B{fully} qualified name of this element @return: The fully qualified name. @rtype: basestring

(self)

Source from the content-addressed store, hash-verified

132 return self
133
134 def qname(self):
135 """
136 Get the B{fully} qualified name of this element
137 @return: The fully qualified name.
138 @rtype: basestring
139 """
140 if self.prefix is None:
141 return self.name
142 else:
143 return '%s:%s' % (self.prefix, self.name)
144
145 def getRoot(self):
146 """

Callers 6

cloneMethod · 0.95
strMethod · 0.95
plainMethod · 0.95
endElementMethod · 0.45
langMethod · 0.45
startMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected