Appends the given tag to the contents of this tag.
(self, tag)
| 246 | self.contents.insert(position, newChild) |
| 247 | |
| 248 | def append(self, tag): |
| 249 | """Appends the given tag to the contents of this tag.""" |
| 250 | self.insert(len(self.contents), tag) |
| 251 | |
| 252 | def findNext(self, name=None, attrs={}, text=None, **kwargs): |
| 253 | """Returns the first item that matches the given criteria and |
no test coverage detected