(self)
| 1222 | self.pushTag(self) |
| 1223 | |
| 1224 | def popTag(self): |
| 1225 | tag = self.tagStack.pop() |
| 1226 | |
| 1227 | #print "Pop", tag.name |
| 1228 | if self.tagStack: |
| 1229 | self.currentTag = self.tagStack[-1] |
| 1230 | return self.currentTag |
| 1231 | |
| 1232 | def pushTag(self, tag): |
| 1233 | #print "Push", tag.name |
no test coverage detected