(self, tag)
| 1225 | return self.currentTag |
| 1226 | |
| 1227 | def pushTag(self, tag): |
| 1228 | #print "Push", tag.name |
| 1229 | if self.currentTag: |
| 1230 | self.currentTag.contents.append(tag) |
| 1231 | self.tagStack.append(tag) |
| 1232 | self.currentTag = self.tagStack[-1] |
| 1233 | |
| 1234 | def endData(self, containerClass=NavigableString): |
| 1235 | if self.currentData: |
no test coverage detected