##// END OF EJS Templates
Merge pull request #8187 from minrk/parallel_allow_none...
Merge pull request #8187 from minrk/parallel_allow_none missing allow_none=True in IPython.parallel

File last commit:

r20958:8aead653
r20993:05d48c8d merge
Show More
__init__.py
31 lines | 1.1 KiB | text/x-python | PythonLexer
"""
Shim to maintain backwards compatibility with old IPython.kernel imports.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import sys
from warnings import warn
warn("The `IPython.kernel` package has been deprecated. "
"You should import from ipython_kernel or jupyter_client instead.")
from IPython.utils.shimmodule import ShimModule
# zmq subdir is gone
sys.modules['IPython.kernel.zmq.session'] = ShimModule('session', mirror='jupyter_client.session')
sys.modules['IPython.kernel.zmq'] = ShimModule('zmq', mirror='ipython_kernel')
for pkg in ('comm', 'inprocess'):
sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='ipython_kernel.%s' % pkg)
for pkg in ('ioloop', 'blocking'):
sys.modules['IPython.kernel.%s' % pkg] = ShimModule(pkg, mirror='jupyter_client.%s' % pkg)
# required for `from IPython.kernel import PKG`
from ipython_kernel import comm, inprocess
from jupyter_client import ioloop, blocking
# public API
from ipython_kernel.connect import *
from jupyter_client import *