File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,19 @@ class InlineBackendConfig(SingletonConfigurable):
32
32
class InlineBackend (InlineBackendConfig ):
33
33
"""An object to store configuration of the inline backend."""
34
34
35
+ # While we are deprecating overriding matplotlib defaults out of the
36
+ # box, this structure should remain here (empty) for API compatibility
37
+ # and the use of other tools that may need it. Specifically Spyder takes
38
+ # advantage of it.
39
+ # See https://github.com/ipython/ipython/issues/10383 for details.
35
40
rc = Dict (
36
41
{},
37
- help = """Deprecated: as of v0.1.4, we do not override any matplotlib
38
- defaults. Please use matplotlib's configuration tools, or customize
39
- this classin your `ipython_config.py` file for IPython/Jupyter-
40
- specific usage."""
42
+ help = """Dict to manage matplotlib configuration defaults in the inline
43
+ backend. As of v0.1.4 IPython/Jupyter do not override defaults out of
44
+ the box, but third-party tools may use it to manage rc data. To change
45
+ personal defaults for matplotlib, use matplotlib's configuration
46
+ tools, or customize this class in your `ipython_config.py` file for
47
+ IPython/Jupyter- specific usage."""
41
48
).tag (config = True )
42
49
43
50
figure_formats = Set (
You can’t perform that action at this time.
0 commit comments