##// END OF EJS Templates
Replace dead link to nose website in install.rst...
Replace dead link to nose website in install.rst Hi, I noticed that the existing link (http://somethingaboutorange.com/mrl/projects/nose/) is dead, so I propose changing the link to https://nose.readthedocs.org, the first hit on a Google search for 'python nose'.

File last commit:

r21326:c5b82206
r21349:e29e0787
Show More
parallel.py
20 lines | 608 B | text/x-python | PythonLexer
Min RK
shim out IPython.parallel into ipython_parallel
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
warn("The `IPython.parallel` package has been deprecated. "
Min RK
ipython_parallel is now ipyparallel
r21326 "You should import from ipyparallel instead.")
Min RK
shim out IPython.parallel into ipython_parallel
r20858
from IPython.utils.shimmodule import ShimModule
# Unconditionally insert the shim into sys.modules so that further import calls
# trigger the custom attribute access above
Min RK
add import hook for shim packages...
r20990 sys.modules['IPython.parallel'] = ShimModule(
Min RK
ipython_parallel is now ipyparallel
r21326 src='IPython.parallel', mirror='ipyparallel')
Min RK
add import hook for shim packages...
r20990