(self, count=1)
| 70 | self._tabLevel = max(0, self._tabLevel - 1) |
| 71 | |
| 72 | def newLine(self, count=1): |
| 73 | if not self.compact: |
| 74 | self.write(self._newLine * count) |
| 75 | |
| 76 | def getandwrite_attributes(self, tagname, args): |
| 77 | attributes = self.GLOBAL_ATTRIBUTES.union(getattr(self, tagname.upper() + '_ATTRIBUTES', set([]))) |
no test coverage detected