8000 Minor docstring/references update. by anntzer · Pull Request #16595 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Minor docstring/references update. #16595

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/devel/MEP/MEP22.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ Methods for **Backend implementation**
Backward compatibility
======================

For backward compatibility added a 'navigation' key to
`rcsetup.validate_toolbar`, that is used for Navigation classes
For backward compatibility added 'navigation' to the list of values
supported by :rc:`toolbar`, that is used for Navigation classes
instantiation instead of the NavigationToolbar classes

With this parameter, it makes it transparent to anyone using the
Expand Down
12 changes: 0 additions & 12 deletions doc/missing-references.json
Original file line number Diff line number Diff line change
Expand Up @@ -1481,9 +1481,6 @@
"next_whats_new": [
"doc/users/next_whats_new/README.rst:6"
],
"number": [
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figure:8"
],
"numpy.datetime64": [
"doc/api/prev_api_changes/api_changes_2.1.0.rst:95",
"doc/faq/howto_faq.rst:18",
Expand Down Expand Up @@ -1518,15 +1515,6 @@
"pyplot.set_loglevel": [
"doc/users/prev_whats_new/whats_new_3.1.0.rst:377"
],
"quiverkey": [
"lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Quiver:247"
],
"rc_file_defaults": [
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.rcdefaults:18"
],
"rcsetup.validate_toolbar": [
"doc/devel/MEP/MEP22.rst:183"
],
"remove_canvas": [
"doc/devel/MEP/MEP23.rst:63"
],
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ def rcdefaults():

See Also
--------
rc_file_defaults
matplotlib.rc_file_defaults
Restore the `.rcParams` from the rc file originally loaded by
Matplotlib.
matplotlib.style.use
Expand Down
8000 9 changes: 3 additions & 6 deletions lib/matplotlib/fontconfig_pattern.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
https://www.freedesktop.org/software/fontconfig/fontconfig-user.html
"""

# This class is defined here because it must be available in:
# - The old-style config framework (:file:`rcsetup.py`)
# - The font manager (:file:`font_manager.py`)

# It probably logically belongs in :file:`font_manager.py`, but placing it
# there would have created cyclical dependency problems.
# This class logically belongs in `matplotlib.font_manager`, but placing it
# there would have created cyclical dependency problems, because it also needs
# to be available from `matplotlib.rcsetup` (for parsing matplotlibrc files).

from functools import lru_cache
import re
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/quiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@

See Also
--------
quiverkey : Add a key to a quiver plot.
.Axes.quiverkey : Add a key to a quiver plot.
""" % docstring.interpd.params


Expand Down
0