Skip to content

MAINT docstring appending doesn't mess with rendering anymore. #7297

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
Oct 18, 2016
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
12 changes: 5 additions & 7 deletions lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1602,14 +1602,12 @@ def _replacer(data, key):

_DATA_DOC_APPENDIX = """

Notes
-----
.. note::
In addition to the above described arguments, this function can take a
**data** keyword argument. If such a **data** argument is given, the
following arguments are replaced by **data[<arg>]**:

In addition to the above described arguments, this function can take a
**data** keyword argument. If such a **data** argument is given, the
following arguments are replaced by **data[<arg>]**:

{replaced}
{replaced}
"""


Expand Down
3 changes: 2 additions & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4676,7 +4676,8 @@ def barbs(self, *args, **kw):
positional_parameter_names=["x", "y", "c"])
@docstring.dedent_interpd
def fill(self, *args, **kwargs):
"""Plot filled polygons.
"""
Plot filled polygons.

Parameters
----------
Expand Down