##// END OF EJS Templates
Separate parent functionality from ParentPollerWindows...
Separate parent functionality from ParentPollerWindows ParentPollerWindows contained a mixture of methods to run in the parent and the child, which was revealed by test failures now that jupyter_client and ipython_kernel are separate packages. This moves the parent methods into a new module jupyter_client.win_interrupt Closes gh-8201

File last commit:

r20990:233a2e54
r21021:327a1c7c
Show More
parallel.py
20 lines | 618 B | text/x-python | PythonLexer
"""
Shim to maintain backwards compatibility with old IPython.parallel imports.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import sys
from warnings import warn
warn("The `IPython.parallel` package has been deprecated. "
"You should import from ipython_parallel instead.")
from IPython.utils.shimmodule import ShimModule
# Unconditionally insert the shim into sys.modules so that further import calls
# trigger the custom attribute access above
sys.modules['IPython.parallel'] = ShimModule(
src='IPython.parallel', mirror='ipython_parallel')