(self, text)
| 251 | print("") |
| 252 | |
| 253 | def info(self, text): |
| 254 | if self.interactive: |
| 255 | print(text) |
| 256 | else: |
| 257 | sys.stderr.write(str(text)+"\n") |
| 258 | sys.stderr.flush() |
| 259 | |
| 260 | def resize(self, width, height): |
| 261 | print('\033[8;{};{}t'.format(height, width)) |
no test coverage detected