This has to be in a method, for TerminalIPythonApp to be available.
(self)
| 194 | |
| 195 | @default('classes') |
| 196 | def _classes_default(self): |
| 197 | """This has to be in a method, for TerminalIPythonApp to be available.""" |
| 198 | return [ |
| 199 | InteractiveShellApp, # ShellApp comes before TerminalApp, because |
| 200 | self.__class__, # it will also affect subclasses (e.g. QtConsole) |
| 201 | TerminalInteractiveShell, |
| 202 | HistoryManager, |
| 203 | ProfileDir, |
| 204 | PlainTextFormatter, |
| 205 | IPCompleter, |
| 206 | ScriptMagics, |
| 207 | LoggingMagics, |
| 208 | StoreMagics, |
| 209 | ] |
| 210 | |
| 211 | deprecated_subcommands = dict( |
| 212 | qtconsole=('qtconsole.qtconsoleapp.JupyterQtConsoleApp', |
nothing calls this directly
no outgoing calls
no test coverage detected