backend_inline.py 438 B

123456789101112131415
  1. """A matplotlib backend for publishing figures via display_data"""
  2. # Copyright (c) IPython Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. import warnings
  5. from matplotlib_inline.backend_inline import * # noqa: F403 # analysis: ignore
  6. warnings.warn(
  7. "`ipykernel.pylab.backend_inline` is deprecated, directly "
  8. "use `matplotlib_inline.backend_inline`",
  9. DeprecationWarning,
  10. stacklevel=2,
  11. )