Replace the contents of the tag with a string
(self, string)
| 584 | return self.contents[0] |
| 585 | |
| 586 | def setString(self, string): |
| 587 | """Replace the contents of the tag with a string""" |
| 588 | self.clear() |
| 589 | self.append(string) |
| 590 | |
| 591 | string = property(getString, setString) |
| 592 |