From 633a65e02321041e2f21a77ee77417a69a12e906 2015-04-09 06:04:20 From: Min RK Date: 2015-04-09 06:04:20 Subject: [PATCH] shim IPython.html --- diff --git a/IPython/html.py b/IPython/html.py new file mode 100644 index 0000000..f1c0d86 --- /dev/null +++ b/IPython/html.py @@ -0,0 +1,17 @@ +""" +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. " + "You should import from jupyter_notebook instead.") + +from IPython.utils.shimmodule import ShimModule + +sys.modules['IPython.html'] = ShimModule( + src='IPython.html', mirror='jupyter_notebook') +