parallel.py
20 lines
| 634 B
| text/x-python
|
PythonLexer
/ IPython / parallel.py
Min RK
|
r20858 | """ | ||
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 | ||||
Min RK
|
r21515 | from IPython.utils.shimmodule import ShimModule, ShimWarning | ||
Min RK
|
r20858 | |||
Min RK
|
r21515 | warn("The `IPython.parallel` package has been deprecated. " | ||
"You should import from ipyparallel instead.", ShimWarning) | ||||
Min RK
|
r20858 | |||
# Unconditionally insert the shim into sys.modules so that further import calls | ||||
# trigger the custom attribute access above | ||||
Min RK
|
r20990 | sys.modules['IPython.parallel'] = ShimModule( | ||
Min RK
|
r21326 | src='IPython.parallel', mirror='ipyparallel') | ||
Min RK
|
r20990 | |||