(self, conn)
| 758 | self.save_flag.set() |
| 759 | |
| 760 | def _writeout_input_cache(self, conn): |
| 761 | with conn: |
| 762 | for line in self.db_input_cache: |
| 763 | conn.execute("INSERT INTO history VALUES (?, ?, ?, ?)", |
| 764 | (self.session_number,)+line) |
| 765 | |
| 766 | def _writeout_output_cache(self, conn): |
| 767 | with conn: |