File tree 5 files changed +7
-22
lines changed 5 files changed +7
-22
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,8 @@ Methods for **Backend implementation**
180
180
Backward compatibility
181
181
======================
182
182
183
- For backward compatibility added a 'navigation' key to
184
- ` rcsetup.validate_toolbar `, that is used for Navigation classes
183
+ For backward compatibility added 'navigation' to the list of values
184
+ supported by :rc: ` toolbar `, that is used for Navigation classes
185
185
instantiation instead of the NavigationToolbar classes
186
186
187
187
With this parameter, it makes it transparent to anyone using the
Original file line number Diff line number Diff line change 1481
1481
"next_whats_new" : [
1482
1482
" doc/users/next_whats_new/README.rst:6"
1483
1483
],
1484
- "number" : [
1485
- " lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figure:8"
1486
- ],
1487
1484
"numpy.datetime64" : [
1488
1485
" doc/api/prev_api_changes/api_changes_2.1.0.rst:95" ,
1489
1486
" doc/faq/howto_faq.rst:18" ,
1518
1515
"pyplot.set_loglevel" : [
1519
1516
" doc/users/prev_whats_new/whats_new_3.1.0.rst:377"
1520
1517
],
1521
- "quiverkey" : [
1522
- " lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Quiver:247"
1523
- ],
1524
- "rc_file_defaults" : [
1525
- " lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.rcdefaults:18"
1526
- ],
1527
- "rcsetup.validate_toolbar" : [
1528
- " doc/devel/MEP/MEP22.rst:183"
1529
- ],
1530
1518
"remove_canvas" : [
1531
1519
" doc/devel/MEP/MEP23.rst:63"
1532
1520
],
Original file line number Diff line number Diff line change @@ -955,7 +955,7 @@ def rcdefaults():
955
955
956
956
See Also
957
957
--------
958
- rc_file_defaults
958
+ matplotlib. rc_file_defaults
959
959
Restore the `.rcParams` from the rc file originally loaded by
960
960
Matplotlib.
961
961
matplotlib.style.use
Original file line number Diff line number Diff line change 5
5
https://www.freedesktop.org/software/fontconfig/fontconfig-user.html
6
6
"""
7
7
8
- # This class is defined here because it must be available in:
9
- # - The old-style config framework (:file:`rcsetup.py`)
10
- # - The font manager (:file:`font_manager.py`)
11
-
12
- # It probably logically belongs in :file:`font_manager.py`, but placing it
13
- # there would have created cyclical dependency problems.
8
+ # This class logically belongs in `matplotlib.font_manager`, but placing it
9
+ # there would have created cyclical dependency problems, because it also needs
10
+ # to be available from `matplotlib.rcsetup` (for parsing matplotlibrc files).
14
11
15
12
from functools import lru_cache
16
13
import re
Original file line number Diff line number Diff line change 188
188
189
189
See Also
190
190
--------
191
- quiverkey : Add a key to a quiver plot.
191
+ .Axes. quiverkey : Add a key to a quiver plot.
192
192
""" % docstring .interpd .params
193
193
194
194
You can’t perform that action at this time.
0 commit comments