From b81196edc8479b83055e16e1f307be940a071cb5 2013-03-04 22:53:48 From: MinRK Date: 2013-03-04 22:53:48 Subject: [PATCH] Backport PR #2490: add ZMQInteractiveShell to IPEngineApp class list so it will appear in default ipengine_config.py, `--help-all`, etc. as [mentioned](https://github.com/ipython/ipython/issues/2473#issuecomment-9414837) in #2473 --- diff --git a/IPython/parallel/apps/ipengineapp.py b/IPython/parallel/apps/ipengineapp.py index 9feaf01..c8013e6 100755 --- a/IPython/parallel/apps/ipengineapp.py +++ b/IPython/parallel/apps/ipengineapp.py @@ -41,6 +41,7 @@ from IPython.zmq.ipkernel import Kernel, IPKernelApp from IPython.zmq.session import ( Session, session_aliases, session_flags ) +from IPython.zmq.zmqshell import ZMQInteractiveShell from IPython.config.configurable import Configurable @@ -143,7 +144,7 @@ class IPEngineApp(BaseParallelApplication): description = _description examples = _examples config_file_name = Unicode(default_config_file_name) - classes = List([ProfileDir, Session, EngineFactory, Kernel, MPI]) + classes = List([ZMQInteractiveShell, ProfileDir, Session, EngineFactory, Kernel, MPI]) startup_script = Unicode(u'', config=True, help='specify a script to be run at startup')