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

Method str

suds/sax/document.py:43–49  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

41 return None
42
43 def str(self):
44 s = []
45 s.append(self.DECL)
46 s.append('\n')
47 if self.root() is not None:
48 s.append(self.root().str())
49 return ''.join(s)
50
51 def plain(self):
52 s = []

Callers 2

__str__Method · 0.95
__unicode__Method · 0.95

Calls 2

rootMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected