##// END OF EJS Templates
jupyter_nbformat is now nbformat
jupyter_nbformat is now nbformat

File last commit:

r21345:e549d87b
r21345:e549d87b
Show More
nbformat.py
19 lines | 601 B | text/x-python | PythonLexer
Thomas Kluyver
Shim IPython.nbformat so tests pass again
r20894 """
Shim to maintain backwards compatibility with old IPython.nbformat imports.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import sys
from warnings import warn
warn("The `IPython.nbformat` package has been deprecated. "
Min RK
jupyter_nbformat is now nbformat
r21345 "You should import from nbformat instead.")
Thomas Kluyver
Shim IPython.nbformat so tests pass again
r20894
from IPython.utils.shimmodule import ShimModule
# Unconditionally insert the shim into sys.modules so that further import calls
# trigger the custom attribute access above
Min RK
add import hook for shim packages...
r20990 sys.modules['IPython.nbformat'] = ShimModule(
Min RK
jupyter_nbformat is now nbformat
r21345 src='IPython.nbformat', mirror='nbformat')