Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 777175b commit c03b2b6Copy full SHA for c03b2b6
3 files changed
IPython/html.py
@@ -8,13 +8,17 @@
8
from warnings import warn
9
10
warn("The `IPython.html` package has been deprecated. "
11
- "You should import from `jupyter_notebook` instead.")
+ "You should import from `jupyter_notebook` instead. "
12
+ "`IPython.html.widgets` has moved to `ipython_widgets`.")
13
14
from IPython.utils.shimmodule import ShimModule
15
16
sys.modules['IPython.html'] = ShimModule(
17
src='IPython.html', mirror='jupyter_notebook')
18
19
+sys.modules['IPython.html.widgets'] = ShimModule(
20
+ src='IPython.html.widgets', mirror='ipython_widgets')
21
+
22
if __name__ == '__main__':
23
from jupyter_notebook import notebookapp as app
24
app.launch_new_instance()
IPython/html/__init__.py
IPython/html/widgets.py
0 commit comments