diff --git a/IPython/config/default/ipengine_config.py b/IPython/config/default/ipengine_config.py index fafae22..8d55db4 100644 --- a/IPython/config/default/ipengine_config.py +++ b/IPython/config/default/ipengine_config.py @@ -1,6 +1,6 @@ c = get_config() -c.MPI.use = 'mpi4py' +c.MPI.use = '' c.MPI.mpi4py = """from mpi4py import MPI as mpi mpi.size = mpi.COMM_WORLD.Get_size() @@ -16,10 +16,17 @@ mpi.size = 0 """ c.Global.log_to_file = False -c.Global.exec_lines = [] + +c.Global.exec_lines = ['import numpy'] + c.Global.log_dir_name = 'log' + c.Global.security_dir_name = 'security' + +c.Global.log_level = 10 + c.Global.shell_class = 'IPython.kernel.core.interpreter.Interpreter' -self.default_config.Global.furl_file_name = 'ipcontroller-engine.furl' -self.default_config.Global.furl_file = '' +c.Global.furl_file_name = 'ipcontroller-engine.furl' + +c.Global.furl_file = ''