Output tabs to the current level and add newlines, depending on the setting of self._newLine (string with newlines) and self._tabLevel (number of indents).
(self)
| 55 | self._useOnline = True |
| 56 | |
| 57 | def tabs(self): |
| 58 | """"Output tabs to the current level and add newlines, depending on the |
| 59 | setting of self._newLine (string with newlines) and self._tabLevel |
| 60 | (number of indents).""" |
| 61 | if not self.compact and self._verbose: |
| 62 | self.write(self._newLine + (self._tabIndent * self._tabLevel)) |
| 63 | |
| 64 | def tabIn(self): |
| 65 | if not self.compact and self._doIndent: |