Sets up the command history, and starts regular autosaves.
(self)
| 1949 | #------------------------------------------------------------------------- |
| 1950 | |
| 1951 | def init_history(self): |
| 1952 | """Sets up the command history, and starts regular autosaves.""" |
| 1953 | self.history_manager = HistoryManager(shell=self, parent=self) |
| 1954 | self.configurables.append(self.history_manager) |
| 1955 | |
| 1956 | #------------------------------------------------------------------------- |
| 1957 | # Things related to exception handling and tracebacks (not debugging) |