nbformat.py
19 lines
| 601 B
| text/x-python
|
PythonLexer
/ IPython / nbformat.py
Thomas Kluyver
|
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
|
r21345 | "You should import from nbformat instead.") | ||
Thomas Kluyver
|
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
|
r20990 | sys.modules['IPython.nbformat'] = ShimModule( | ||
Min RK
|
r21345 | src='IPython.nbformat', mirror='nbformat') | ||