##// END OF EJS Templates
shim out IPython.parallel into ipython_parallel
Min RK -
Show More
@@ -0,0 +1,20 b''
1 """
2 Shim to maintain backwards compatibility with old IPython.parallel imports.
3 """
4 # Copyright (c) IPython Development Team.
5 # Distributed under the terms of the Modified BSD License.
6
7 from __future__ import print_function
8
9 import sys
10 from warnings import warn
11
12 warn("The `IPython.parallel` package has been deprecated. "
13 "You should import from ipython_parallel instead.")
14
15 from IPython.utils.shimmodule import ShimModule
16
17 # Unconditionally insert the shim into sys.modules so that further import calls
18 # trigger the custom attribute access above
19
20 sys.modules['IPython.parallel'] = ShimModule('parallel', mirror='ipython_parallel')
1 NO CONTENT: file renamed from IPython/parallel/__init__.py to ipython_parallel/__init__.py
NO CONTENT: file renamed from IPython/parallel/__init__.py to ipython_parallel/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/apps/__init__.py to ipython_parallel/apps/__init__.py
NO CONTENT: file renamed from IPython/parallel/apps/__init__.py to ipython_parallel/apps/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/apps/baseapp.py to ipython_parallel/apps/baseapp.py
NO CONTENT: file renamed from IPython/parallel/apps/baseapp.py to ipython_parallel/apps/baseapp.py
1 NO CONTENT: file renamed from IPython/parallel/apps/ipclusterapp.py to ipython_parallel/apps/ipclusterapp.py
NO CONTENT: file renamed from IPython/parallel/apps/ipclusterapp.py to ipython_parallel/apps/ipclusterapp.py
1 NO CONTENT: file renamed from IPython/parallel/apps/ipcontrollerapp.py to ipython_parallel/apps/ipcontrollerapp.py
NO CONTENT: file renamed from IPython/parallel/apps/ipcontrollerapp.py to ipython_parallel/apps/ipcontrollerapp.py
1 NO CONTENT: file renamed from IPython/parallel/apps/ipengineapp.py to ipython_parallel/apps/ipengineapp.py
NO CONTENT: file renamed from IPython/parallel/apps/ipengineapp.py to ipython_parallel/apps/ipengineapp.py
1 NO CONTENT: file renamed from IPython/parallel/apps/iploggerapp.py to ipython_parallel/apps/iploggerapp.py
NO CONTENT: file renamed from IPython/parallel/apps/iploggerapp.py to ipython_parallel/apps/iploggerapp.py
1 NO CONTENT: file renamed from IPython/parallel/apps/launcher.py to ipython_parallel/apps/launcher.py
NO CONTENT: file renamed from IPython/parallel/apps/launcher.py to ipython_parallel/apps/launcher.py
1 NO CONTENT: file renamed from IPython/parallel/apps/logwatcher.py to ipython_parallel/apps/logwatcher.py
NO CONTENT: file renamed from IPython/parallel/apps/logwatcher.py to ipython_parallel/apps/logwatcher.py
1 NO CONTENT: file renamed from IPython/parallel/apps/win32support.py to ipython_parallel/apps/win32support.py
NO CONTENT: file renamed from IPython/parallel/apps/win32support.py to ipython_parallel/apps/win32support.py
1 NO CONTENT: file renamed from IPython/parallel/apps/winhpcjob.py to ipython_parallel/apps/winhpcjob.py
NO CONTENT: file renamed from IPython/parallel/apps/winhpcjob.py to ipython_parallel/apps/winhpcjob.py
1 NO CONTENT: file renamed from IPython/parallel/client/__init__.py to ipython_parallel/client/__init__.py
NO CONTENT: file renamed from IPython/parallel/client/__init__.py to ipython_parallel/client/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/client/asyncresult.py to ipython_parallel/client/asyncresult.py
NO CONTENT: file renamed from IPython/parallel/client/asyncresult.py to ipython_parallel/client/asyncresult.py
1 NO CONTENT: file renamed from IPython/parallel/client/client.py to ipython_parallel/client/client.py
NO CONTENT: file renamed from IPython/parallel/client/client.py to ipython_parallel/client/client.py
1 NO CONTENT: file renamed from IPython/parallel/client/magics.py to ipython_parallel/client/magics.py
NO CONTENT: file renamed from IPython/parallel/client/magics.py to ipython_parallel/client/magics.py
1 NO CONTENT: file renamed from IPython/parallel/client/map.py to ipython_parallel/client/map.py
NO CONTENT: file renamed from IPython/parallel/client/map.py to ipython_parallel/client/map.py
1 NO CONTENT: file renamed from IPython/parallel/client/remotefunction.py to ipython_parallel/client/remotefunction.py
NO CONTENT: file renamed from IPython/parallel/client/remotefunction.py to ipython_parallel/client/remotefunction.py
1 NO CONTENT: file renamed from IPython/parallel/client/view.py to ipython_parallel/client/view.py
NO CONTENT: file renamed from IPython/parallel/client/view.py to ipython_parallel/client/view.py
1 NO CONTENT: file renamed from IPython/parallel/cluster.py to ipython_parallel/cluster.py
NO CONTENT: file renamed from IPython/parallel/cluster.py to ipython_parallel/cluster.py
1 NO CONTENT: file renamed from IPython/parallel/controller/__init__.py to ipython_parallel/controller/__init__.py
NO CONTENT: file renamed from IPython/parallel/controller/__init__.py to ipython_parallel/controller/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/controller/__main__.py to ipython_parallel/controller/__main__.py
NO CONTENT: file renamed from IPython/parallel/controller/__main__.py to ipython_parallel/controller/__main__.py
1 NO CONTENT: file renamed from IPython/parallel/controller/dependency.py to ipython_parallel/controller/dependency.py
NO CONTENT: file renamed from IPython/parallel/controller/dependency.py to ipython_parallel/controller/dependency.py
1 NO CONTENT: file renamed from IPython/parallel/controller/dictdb.py to ipython_parallel/controller/dictdb.py
NO CONTENT: file renamed from IPython/parallel/controller/dictdb.py to ipython_parallel/controller/dictdb.py
1 NO CONTENT: file renamed from IPython/parallel/controller/heartmonitor.py to ipython_parallel/controller/heartmonitor.py
NO CONTENT: file renamed from IPython/parallel/controller/heartmonitor.py to ipython_parallel/controller/heartmonitor.py
1 NO CONTENT: file renamed from IPython/parallel/controller/hub.py to ipython_parallel/controller/hub.py
NO CONTENT: file renamed from IPython/parallel/controller/hub.py to ipython_parallel/controller/hub.py
1 NO CONTENT: file renamed from IPython/parallel/controller/mongodb.py to ipython_parallel/controller/mongodb.py
NO CONTENT: file renamed from IPython/parallel/controller/mongodb.py to ipython_parallel/controller/mongodb.py
1 NO CONTENT: file renamed from IPython/parallel/controller/scheduler.py to ipython_parallel/controller/scheduler.py
NO CONTENT: file renamed from IPython/parallel/controller/scheduler.py to ipython_parallel/controller/scheduler.py
1 NO CONTENT: file renamed from IPython/parallel/controller/sqlitedb.py to ipython_parallel/controller/sqlitedb.py
NO CONTENT: file renamed from IPython/parallel/controller/sqlitedb.py to ipython_parallel/controller/sqlitedb.py
1 NO CONTENT: file renamed from IPython/parallel/engine/__init__.py to ipython_parallel/engine/__init__.py
NO CONTENT: file renamed from IPython/parallel/engine/__init__.py to ipython_parallel/engine/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/engine/__main__.py to ipython_parallel/engine/__main__.py
NO CONTENT: file renamed from IPython/parallel/engine/__main__.py to ipython_parallel/engine/__main__.py
1 NO CONTENT: file renamed from IPython/parallel/engine/engine.py to ipython_parallel/engine/engine.py
NO CONTENT: file renamed from IPython/parallel/engine/engine.py to ipython_parallel/engine/engine.py
1 NO CONTENT: file renamed from IPython/parallel/error.py to ipython_parallel/error.py
NO CONTENT: file renamed from IPython/parallel/error.py to ipython_parallel/error.py
1 NO CONTENT: file renamed from IPython/parallel/factory.py to ipython_parallel/factory.py
NO CONTENT: file renamed from IPython/parallel/factory.py to ipython_parallel/factory.py
1 NO CONTENT: file renamed from IPython/parallel/logger.py to ipython_parallel/logger.py
NO CONTENT: file renamed from IPython/parallel/logger.py to ipython_parallel/logger.py
1 NO CONTENT: file renamed from IPython/parallel/tests/__init__.py to ipython_parallel/tests/__init__.py
NO CONTENT: file renamed from IPython/parallel/tests/__init__.py to ipython_parallel/tests/__init__.py
1 NO CONTENT: file renamed from IPython/parallel/tests/clienttest.py to ipython_parallel/tests/clienttest.py
NO CONTENT: file renamed from IPython/parallel/tests/clienttest.py to ipython_parallel/tests/clienttest.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_asyncresult.py to ipython_parallel/tests/test_asyncresult.py
NO CONTENT: file renamed from IPython/parallel/tests/test_asyncresult.py to ipython_parallel/tests/test_asyncresult.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_client.py to ipython_parallel/tests/test_client.py
NO CONTENT: file renamed from IPython/parallel/tests/test_client.py to ipython_parallel/tests/test_client.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_db.py to ipython_parallel/tests/test_db.py
NO CONTENT: file renamed from IPython/parallel/tests/test_db.py to ipython_parallel/tests/test_db.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_dependency.py to ipython_parallel/tests/test_dependency.py
NO CONTENT: file renamed from IPython/parallel/tests/test_dependency.py to ipython_parallel/tests/test_dependency.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_launcher.py to ipython_parallel/tests/test_launcher.py
NO CONTENT: file renamed from IPython/parallel/tests/test_launcher.py to ipython_parallel/tests/test_launcher.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_lbview.py to ipython_parallel/tests/test_lbview.py
NO CONTENT: file renamed from IPython/parallel/tests/test_lbview.py to ipython_parallel/tests/test_lbview.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_magics.py to ipython_parallel/tests/test_magics.py
NO CONTENT: file renamed from IPython/parallel/tests/test_magics.py to ipython_parallel/tests/test_magics.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_mongodb.py to ipython_parallel/tests/test_mongodb.py
NO CONTENT: file renamed from IPython/parallel/tests/test_mongodb.py to ipython_parallel/tests/test_mongodb.py
1 NO CONTENT: file renamed from IPython/parallel/tests/test_view.py to ipython_parallel/tests/test_view.py
NO CONTENT: file renamed from IPython/parallel/tests/test_view.py to ipython_parallel/tests/test_view.py
1 NO CONTENT: file renamed from IPython/parallel/util.py to ipython_parallel/util.py
NO CONTENT: file renamed from IPython/parallel/util.py to ipython_parallel/util.py
General Comments 0
You need to be logged in to leave comments. Login now