nbformat.py
19 lines
| 627 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 | ||||
Min RK
|
r21515 | from IPython.utils.shimmodule import ShimModule, ShimWarning | ||
Thomas Kluyver
|
r20894 | |||
Min RK
|
r21515 | warn("The `IPython.nbformat` package has been deprecated. " | ||
"You should import from nbformat instead.", ShimWarning) | ||||
Thomas Kluyver
|
r20894 | |||
# 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') | ||