File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
api/next_api_changes/deprecations Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- `~. rcsetup.interactive_bk `, `~. rcsetup.non_interactive_bk ` and `~. rcsetup.all_backends `
1
+ `` rcsetup.interactive_bk `` , `` rcsetup.non_interactive_bk `` and `` rcsetup.all_backends ` `
2
2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
3
4
4
... are deprecated and replaced by
5
- :meth: `matplotlib.backends.registry.backend_registry .list_builtin `
5
+ :meth: `matplotlib.backends.registry.BackendRegistry .list_builtin `
6
6
with the following arguments
7
7
8
8
- `matplotlib.backends.registry.BackendFilter.INTERACTIVE `
Original file line number Diff line number Diff line change 1
1
BackendRegistry
2
2
~~~~~~~~~~~~~~~
3
3
4
- New `~/.BackendRegistry ` class is the single source of truth for available
5
- backends. The singleton instance is `matplotlib.backends.registry.backend_registry `.
4
+ New :class: `~matplotlib.backends.registry.BackendRegistry ` class is the single
5
+ source of truth for available backends. The singleton instance is
6
+ ``matplotlib.backends.registry.backend_registry ``.
Original file line number Diff line number Diff line change 3
3
4
4
class BackendFilter (Enum ):
5
5
"""
6
- Filter used with :meth:`~. BackendRegistry.list_builtins `
6
+ Filter used with :meth:`~matplotlib.backends.registry. BackendRegistry.list_builtin `
7
7
8
8
.. versionadded:: 3.9
9
9
"""
@@ -17,6 +17,9 @@ class BackendRegistry:
17
17
18
18
This is the single source of truth for available backends.
19
19
20
+ All use of ``BackendRegistry`` should be via the singleton instance
21
+ ``backend_registry``.
22
+
20
23
.. versionadded:: 3.9
21
24
"""
22
25
# Built-in backends are those which are included in the Matplotlib repo.
You can’t perform that action at this time.
0 commit comments