We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b27d4 commit 6a56612Copy full SHA for 6a56612
ipykernel/pylab/backend_inline.py
@@ -3,4 +3,13 @@
3
# Copyright (c) IPython Development Team.
4
# Distributed under the terms of the Modified BSD License.
5
6
+import warnings
7
+
8
from matplotlib_inline.backend_inline import * # analysis: ignore
9
10
11
+warnings.warn(
12
+ "`ipykernel.pylab.backend_inline` is deprecated, directly "
13
+ "use `matplotlib_inline.backend_inline`",
14
+ DeprecationWarning
15
+)
ipykernel/pylab/config.py
This module does not import anything from matplotlib.
"""
from matplotlib_inline.config import * # analysis: ignore
+ "`ipykernel.pylab.config` is deprecated, directly "
+ "use `matplotlib_inline.config`",
0 commit comments