Replace the contents of the tag with a string
(self, string)
| 553 | return self.contents[0] |
| 554 | |
| 555 | def setString(self, string): |
| 556 | """Replace the contents of the tag with a string""" |
| 557 | self.clear() |
| 558 | self.append(string) |
| 559 | |
| 560 | string = property(getString, setString) |
| 561 |