Replace the contents of the tag with a string
(self, string)
| 567 | return self.contents[0] |
| 568 | |
| 569 | def setString(self, string): |
| 570 | """Replace the contents of the tag with a string""" |
| 571 | self.clear() |
| 572 | self.append(string) |
| 573 | |
| 574 | string = property(getString, setString) |
| 575 |