(self)
| 398 | shutil.rmtree(self.tmp_profile_dir, ignore_errors=True) |
| 399 | |
| 400 | def clear_cout(self): |
| 401 | self.cout.seek(0) |
| 402 | self.cout.truncate(0) |
| 403 | |
| 404 | def process_input_line(self, line, store_history): |
| 405 | return self.process_input_lines([line], store_history=store_history) |
no test coverage detected