(self, tag)
| 203 | self._tagStack.append(tag) |
| 204 | |
| 205 | def _closeTag(self, tag): |
| 206 | self.tabOut() |
| 207 | self.tabs() |
| 208 | self.write(u'</%s>' % tag) |
| 209 | self.newLine() # Optional write newline if not self.compat |
| 210 | self._popTag(tag) |
| 211 | |
| 212 | def _closeTag_noWhitespace(self, tag): |
| 213 | """Close the tag. Don’t write any white space inside the block. E.g. |
no test coverage detected