From be63e098efbf3bd5e47906656417373f7a459f77 2014-01-28 17:53:13 From: Min RK Date: 2014-01-28 17:53:13 Subject: [PATCH] Merge pull request #4897 from khinsen/kernel_cmd_doc More detailed documentation about kernel_comd documentation --- diff --git a/IPython/kernel/manager.py b/IPython/kernel/manager.py index c1beefd..477d256 100644 --- a/IPython/kernel/manager.py +++ b/IPython/kernel/manager.py @@ -70,7 +70,13 @@ class KernelManager(LoggingConfigurable, ConnectionFileMixin): kernel_cmd = List(Unicode, config=True, help="""The Popen Command to launch the kernel. - Override this if you have a custom + Override this if you have a custom kernel. + If kernel_cmd is specified in a configuration file, + IPython does not pass any arguments to the kernel, + because it cannot make any assumptions about the + arguments that the kernel understands. In particular, + this means that the kernel does not receive the + option --debug if it given on the IPython command line. """ )