Show More
@@ -1,17 +1,20 b'' | |||||
1 | """ |
|
1 | """ | |
2 | Shim to maintain backwards compatibility with old IPython.html imports. |
|
2 | Shim to maintain backwards compatibility with old IPython.html imports. | |
3 | """ |
|
3 | """ | |
4 | # Copyright (c) IPython Development Team. |
|
4 | # Copyright (c) IPython Development Team. | |
5 | # Distributed under the terms of the Modified BSD License. |
|
5 | # Distributed under the terms of the Modified BSD License. | |
6 |
|
6 | |||
7 | import sys |
|
7 | import sys | |
8 | from warnings import warn |
|
8 | from warnings import warn | |
9 |
|
9 | |||
10 | warn("The `IPython.html` package has been deprecated. " |
|
10 | warn("The `IPython.html` package has been deprecated. " | |
11 | "You should import from jupyter_notebook instead.") |
|
11 | "You should import from jupyter_notebook instead.") | |
12 |
|
12 | |||
13 | from IPython.utils.shimmodule import ShimModule |
|
13 | from IPython.utils.shimmodule import ShimModule | |
14 |
|
14 | |||
15 | sys.modules['IPython.html'] = ShimModule( |
|
15 | sys.modules['IPython.html'] = ShimModule( | |
16 | src='IPython.html', mirror='jupyter_notebook') |
|
16 | src='IPython.html', mirror='jupyter_notebook') | |
17 |
|
17 | |||
|
18 | if __name__ == '__main__': | |||
|
19 | from jupyter_notebook import notebookapp as app | |||
|
20 | app.launch_new_instance() |
General Comments 0
You need to be logged in to leave comments.
Login now