Show More
@@ -34,8 +34,7 b' from IPython.parallel.factory import RegistrationFactory' | |||||
34 | from IPython.parallel.util import disambiguate_url, asbytes |
|
34 | from IPython.parallel.util import disambiguate_url, asbytes | |
35 |
|
35 | |||
36 | from IPython.zmq.session import Message |
|
36 | from IPython.zmq.session import Message | |
37 |
|
37 | from IPython.zmq.ipkernel import Kernel | ||
38 | from .streamkernel import Kernel |
|
|||
39 |
|
38 | |||
40 | class EngineFactory(RegistrationFactory): |
|
39 | class EngineFactory(RegistrationFactory): | |
41 | """IPython engine""" |
|
40 | """IPython engine""" | |
@@ -201,7 +200,7 b' class EngineFactory(RegistrationFactory):' | |||||
201 |
|
200 | |||
202 | self.kernel = Kernel(config=self.config, int_id=self.id, ident=self.ident, session=self.session, |
|
201 | self.kernel = Kernel(config=self.config, int_id=self.id, ident=self.ident, session=self.session, | |
203 | control_stream=control_stream, shell_streams=shell_streams, iopub_stream=iopub_stream, |
|
202 | control_stream=control_stream, shell_streams=shell_streams, iopub_stream=iopub_stream, | |
204 |
loop=loop, user_ns |
|
203 | loop=loop, user_ns=self.user_ns, log=self.log) | |
205 | self.kernel.start() |
|
204 | self.kernel.start() | |
206 |
|
205 | |||
207 |
|
206 |
General Comments 0
You need to be logged in to leave comments.
Login now