Show More
@@ -17,14 +17,14 b' from IPython.utils.shimmodule import ShimModule' | |||
|
17 | 17 | sys.modules['IPython.kernel.zmq.session'] = ShimModule('session', mirror='jupyter_client.session') |
|
18 | 18 | sys.modules['IPython.kernel.zmq'] = ShimModule('zmq', mirror='ipython_kernel') |
|
19 | 19 | |
|
20 |
for pkg in ('comm', 'inprocess' |
|
|
20 | for pkg in ('comm', 'inprocess'): | |
|
21 | 21 | sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='ipython_kernel.%s' % pkg) |
|
22 | 22 | |
|
23 | 23 | for pkg in ('ioloop', 'blocking'): |
|
24 | 24 | sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='jupyter_client.%s' % pkg) |
|
25 | 25 | |
|
26 | 26 | # required for `from IPython.kernel import PKG` |
|
27 |
from ipython_kernel import comm, inprocess |
|
|
27 | from ipython_kernel import comm, inprocess | |
|
28 | 28 | from jupyter_client import ioloop, blocking |
|
29 | 29 | # public API |
|
30 | 30 | from ipython_kernel.connect import * |
General Comments 0
You need to be logged in to leave comments.
Login now