##// END OF EJS Templates
ipython_kernel gets its own config file
MinRK -
Show More
@@ -261,6 +261,7 b' class ProfileCreate(BaseIPythonApplication):'
261 from IPython.terminal.ipapp import TerminalIPythonApp
261 from IPython.terminal.ipapp import TerminalIPythonApp
262 apps = [TerminalIPythonApp]
262 apps = [TerminalIPythonApp]
263 for app_path in (
263 for app_path in (
264 'IPython.kernel.zmq.kernelapp.IPKernelApp',
264 'IPython.qt.console.qtconsoleapp.IPythonQtConsoleApp',
265 'IPython.qt.console.qtconsoleapp.IPythonQtConsoleApp',
265 'IPython.html.notebookapp.NotebookApp',
266 'IPython.html.notebookapp.NotebookApp',
266 'IPython.nbconvert.nbconvertapp.NbConvertApp',
267 'IPython.nbconvert.nbconvertapp.NbConvertApp',
@@ -97,7 +97,7 b' To read more about this, see https://github.com/ipython/ipython/issues/2049'
97
97
98 class IPKernelApp(BaseIPythonApplication, InteractiveShellApp,
98 class IPKernelApp(BaseIPythonApplication, InteractiveShellApp,
99 ConnectionFileMixin):
99 ConnectionFileMixin):
100 name='ipkernel'
100 name='ipython-kernel'
101 aliases = Dict(kernel_aliases)
101 aliases = Dict(kernel_aliases)
102 flags = Dict(kernel_flags)
102 flags = Dict(kernel_flags)
103 classes = [IPythonKernel, ZMQInteractiveShell, ProfileDir, Session]
103 classes = [IPythonKernel, ZMQInteractiveShell, ProfileDir, Session]
@@ -114,10 +114,6 b' class IPKernelApp(BaseIPythonApplication, InteractiveShellApp,'
114 heartbeat = Instance(Heartbeat)
114 heartbeat = Instance(Heartbeat)
115 ports = Dict()
115 ports = Dict()
116
116
117 # ipkernel doesn't get its own config file
118 def _config_file_name_default(self):
119 return 'ipython_config.py'
120
121 # connection info:
117 # connection info:
122
118
123 @property
119 @property
General Comments 0
You need to be logged in to leave comments. Login now