From b8ce89c822c3a537086594a0206e28533669fff9 2012-05-14 20:54:22 From: MinRK Date: 2012-05-14 20:54:22 Subject: [PATCH] add HistoryManager to class list So it will be included in generated ipython_config.py and `--help-all` output. --- diff --git a/IPython/frontend/terminal/ipapp.py b/IPython/frontend/terminal/ipapp.py index f2335d6..638f243 100755 --- a/IPython/frontend/terminal/ipapp.py +++ b/IPython/frontend/terminal/ipapp.py @@ -38,6 +38,7 @@ from IPython.core import usage from IPython.core.completer import IPCompleter from IPython.core.crashhandler import CrashHandler from IPython.core.formatters import PlainTextFormatter +from IPython.core.history import HistoryManager from IPython.core.prompts import PromptManager from IPython.core.application import ( ProfileDir, BaseIPythonApplication, base_flags, base_aliases @@ -207,6 +208,7 @@ class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): self.__class__, # it will also affect subclasses (e.g. QtConsole) TerminalInteractiveShell, PromptManager, + HistoryManager, ProfileDir, PlainTextFormatter, IPCompleter,