##// END OF EJS Templates
IPython.terminal.console -> jupyter_console
Min RK -
Show More
@@ -0,0 +1,20 b''
1 """
2 Shim to maintain backwards compatibility with old IPython.terminal.console 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.terminal.console` package has been deprecated. "
13 "You should import from jupyter_console 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.terminal.console'] = ShimModule('console', mirror='jupyter_console')
1 NO CONTENT: file renamed from IPython/terminal/console/__init__.py to jupyter_console/__init__.py
NO CONTENT: file renamed from IPython/terminal/console/__init__.py to jupyter_console/__init__.py
1 NO CONTENT: file renamed from IPython/terminal/console/__main__.py to jupyter_console/__main__.py
NO CONTENT: file renamed from IPython/terminal/console/__main__.py to jupyter_console/__main__.py
1 NO CONTENT: file renamed from IPython/terminal/console/app.py to jupyter_console/app.py
NO CONTENT: file renamed from IPython/terminal/console/app.py to jupyter_console/app.py
1 NO CONTENT: file renamed from IPython/terminal/console/completer.py to jupyter_console/completer.py
NO CONTENT: file renamed from IPython/terminal/console/completer.py to jupyter_console/completer.py
1 NO CONTENT: file renamed from IPython/terminal/console/interactiveshell.py to jupyter_console/interactiveshell.py
NO CONTENT: file renamed from IPython/terminal/console/interactiveshell.py to jupyter_console/interactiveshell.py
1 NO CONTENT: file renamed from IPython/terminal/console/tests/__init__.py to jupyter_console/tests/__init__.py
NO CONTENT: file renamed from IPython/terminal/console/tests/__init__.py to jupyter_console/tests/__init__.py
1 NO CONTENT: file renamed from IPython/terminal/console/tests/test_console.py to jupyter_console/tests/test_console.py
NO CONTENT: file renamed from IPython/terminal/console/tests/test_console.py to jupyter_console/tests/test_console.py
1 NO CONTENT: file renamed from IPython/terminal/console/tests/test_image_handler.py to jupyter_console/tests/test_image_handler.py
NO CONTENT: file renamed from IPython/terminal/console/tests/test_image_handler.py to jupyter_console/tests/test_image_handler.py
1 NO CONTENT: file renamed from IPython/terminal/console/tests/writetofile.py to jupyter_console/tests/writetofile.py
NO CONTENT: file renamed from IPython/terminal/console/tests/writetofile.py to jupyter_console/tests/writetofile.py
1 NO CONTENT: file renamed from IPython/terminal/console/zmqhistory.py to jupyter_console/zmqhistory.py
NO CONTENT: file renamed from IPython/terminal/console/zmqhistory.py to jupyter_console/zmqhistory.py
General Comments 0
You need to be logged in to leave comments. Login now