##// END OF EJS Templates
fix test for pyc file modules
fix test for pyc file modules

File last commit:

r21312:cfb07016
r21354:571e85ef
Show More
html.py
28 lines | 829 B | text/x-python | PythonLexer
Min RK
shim IPython.html
r21209 """
Shim to maintain backwards compatibility with old IPython.html imports.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import sys
from warnings import warn
warn("The `IPython.html` package has been deprecated. "
Min RK
move widget shim to html.py...
r21302 "You should import from `jupyter_notebook` instead. "
"`IPython.html.widgets` has moved to `ipython_widgets`.")
Min RK
shim IPython.html
r21209
from IPython.utils.shimmodule import ShimModule
Min RK
assign widgets shim as attribute on html shim...
r21312 _widgets = sys.modules['IPython.html.widgets'] = ShimModule(
Min RK
move widget shim to html.py...
r21302 src='IPython.html.widgets', mirror='ipython_widgets')
Min RK
assign widgets shim as attribute on html shim...
r21312 _html = ShimModule(
Min RK
shim widgets before shimming html...
r21308 src='IPython.html', mirror='jupyter_notebook')
Min RK
assign widgets shim as attribute on html shim...
r21312 # hook up widgets
_html.widgets = _widgets
sys.modules['IPython.html'] = _html
Min RK
shim `python -m IPython.html`
r21211 if __name__ == '__main__':
from jupyter_notebook import notebookapp as app
app.launch_new_instance()