(self, tag)
| 1248 | return self.currentTag |
| 1249 | |
| 1250 | def pushTag(self, tag): |
| 1251 | #print "Push", tag.name |
| 1252 | if self.currentTag: |
| 1253 | self.currentTag.contents.append(tag) |
| 1254 | self.tagStack.append(tag) |
| 1255 | self.currentTag = self.tagStack[-1] |
| 1256 | |
| 1257 | def endData(self, containerClass=NavigableString): |
| 1258 | if self.currentData: |
no test coverage detected