asm
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
"""A matplotlib backend for publishing figures via display_data"""
|
||||
|
||||
# Copyright (c) IPython Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
import warnings
|
||||
|
||||
from matplotlib_inline.backend_inline import * # type:ignore[import-untyped] # noqa: F403 # analysis: ignore
|
||||
|
||||
warnings.warn(
|
||||
"`ipykernel.pylab.backend_inline` is deprecated, directly "
|
||||
"use `matplotlib_inline.backend_inline`",
|
||||
DeprecationWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
@@ -0,0 +1,14 @@
|
||||
"""Configurable for configuring the IPython inline backend
|
||||
|
||||
This module does not import anything from matplotlib.
|
||||
"""
|
||||
|
||||
import warnings
|
||||
|
||||
from matplotlib_inline.config import * # type:ignore[import-untyped] # noqa: F403 # analysis: ignore
|
||||
|
||||
warnings.warn(
|
||||
"`ipykernel.pylab.config` is deprecated, directly use `matplotlib_inline.config`",
|
||||
DeprecationWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
Reference in New Issue
Block a user