The XML corresponding to the tree rooted at this element, pretty-printed using 2-spaces indentation at each level and with a trailing '\n'.
(self)
| 159 | |
| 160 | @property |
| 161 | def xml(self): |
| 162 | """ |
| 163 | The XML corresponding to the tree rooted at this element, |
| 164 | pretty-printed using 2-spaces indentation at each level and with |
| 165 | a trailing '\n'. |
| 166 | """ |
| 167 | return self._xml(indent=0) |
| 168 | |
| 169 | def _xml(self, indent): |
| 170 | """ |