(self)
| 387 | shutil.rmtree(self.tmp_profile_dir, ignore_errors=True) |
| 388 | |
| 389 | def clear_cout(self): |
| 390 | self.cout.seek(0) |
| 391 | self.cout.truncate(0) |
| 392 | |
| 393 | def process_input_line(self, line, store_history): |
| 394 | return self.process_input_lines([line], store_history=store_history) |
no test coverage detected