nbformat.py 645 B

12345678910111213141516171819
  1. """
  2. Shim to maintain backwards compatibility with old IPython.nbformat imports.
  3. """
  4. # Copyright (c) IPython Development Team.
  5. # Distributed under the terms of the Modified BSD License.
  6. import sys
  7. from warnings import warn
  8. from IPython.utils.shimmodule import ShimModule, ShimWarning
  9. warn("The `IPython.nbformat` package has been deprecated since IPython 4.0. "
  10. "You should import from nbformat instead.", ShimWarning)
  11. # Unconditionally insert the shim into sys.modules so that further import calls
  12. # trigger the custom attribute access above
  13. sys.modules['IPython.nbformat'] = ShimModule(
  14. src='IPython.nbformat', mirror='nbformat')