Appends the given tag to the contents of this tag.
(self, tag)
| 362 | self.contents.insert(position, new_child) |
| 363 | |
| 364 | def append(self, tag): |
| 365 | """Appends the given tag to the contents of this tag.""" |
| 366 | self.insert(len(self.contents), tag) |
| 367 | |
| 368 | def insert_before(self, predecessor): |
| 369 | """Makes the given element the immediate predecessor of this one. |