Yields the sentence as an XML-formatted string (plain bytestring, UTF-8 encoded).
(self)
| 977 | |
| 978 | @property |
| 979 | def xml(self): |
| 980 | """ Yields the sentence as an XML-formatted string (plain bytestring, UTF-8 encoded). |
| 981 | """ |
| 982 | return parse_xml(self, tab="\t", id=self.id or "") |
| 983 | |
| 984 | @classmethod |
| 985 | def from_xml(cls, xml): |
nothing calls this directly
no test coverage detected