(self)
| 1048 | return "\n".join(self.dump()) |
| 1049 | |
| 1050 | def __repr__(self): |
| 1051 | return "<Structure: %s>" % ( |
| 1052 | " ".join([" ".join(s.split()) for s in self.dump()]) |
| 1053 | ) |
| 1054 | |
| 1055 | def dump(self, indentation=0): |
| 1056 | """Returns a string representation of the structure.""" |