diff --git a/IPython/config/application.py b/IPython/config/application.py index 953e27e..f7985c4 100644 --- a/IPython/config/application.py +++ b/IPython/config/application.py @@ -143,9 +143,10 @@ class Application(SingletonConfigurable): def __init__(self, **kwargs): SingletonConfigurable.__init__(self, **kwargs) - # Add my class to self.classes so my attributes appear in command line - # options. - self.classes.insert(0, self.__class__) + # Ensure my class is in self.classes, so my attributes appear in command line + # options and config files. + if self.__class__ not in self.classes: + self.classes.insert(0, self.__class__) self.init_logging() diff --git a/IPython/frontend/terminal/ipapp.py b/IPython/frontend/terminal/ipapp.py index a10b95e..78977c3 100755 --- a/IPython/frontend/terminal/ipapp.py +++ b/IPython/frontend/terminal/ipapp.py @@ -48,7 +48,7 @@ from IPython.lib import inputhook from IPython.utils import warn from IPython.utils.path import get_ipython_dir, check_for_old_config from IPython.utils.traitlets import ( - Bool, Dict, CaselessStrEnum + Bool, List, Dict, CaselessStrEnum ) #----------------------------------------------------------------------------- @@ -189,8 +189,17 @@ class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): flags = Dict(flags) aliases = Dict(aliases) - classes = [InteractiveShellApp, TerminalInteractiveShell, ProfileDir, - PlainTextFormatter] + classes = List() + def _classes_default(self): + """This has to be in a method, for TerminalIPythonApp to be available.""" + return [ + InteractiveShellApp, # ShellApp comes before TerminalApp, because + self.__class__, # it will also affect subclasses (e.g. QtConsole) + TerminalInteractiveShell, + ProfileDir, + PlainTextFormatter, + ] + subcommands = Dict(dict( qtconsole=('IPython.frontend.qt.console.qtconsoleapp.IPythonQtConsoleApp', """Launch the IPython Qt Console."""