Appends the given tag to the contents of this tag.
(self, tag)
| 261 | self.contents.insert(position, newChild) |
| 262 | |
| 263 | def append(self, tag): |
| 264 | """Appends the given tag to the contents of this tag.""" |
| 265 | self.insert(len(self.contents), tag) |
| 266 | |
| 267 | def findNext(self, name=None, attrs={}, text=None, **kwargs): |
| 268 | """Returns the first item that matches the given criteria and |