Skip to content

Commit b358e6d

Browse files
committed
fix warning in doc build
1 parent 61e9da9 commit b358e6d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

doc/api/prev_api_changes/api_changes_3.3.0/deprecations.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -273,13 +273,13 @@ mathtext glues
273273
The *copy* parameter of ``mathtext.Glue`` is deprecated (the underlying glue
274274
spec is now immutable). ``mathtext.GlueSpec`` is deprecated.
275275

276-
Signatures of `.Artist.draw` and `.Axes.draw`
277-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
278-
The *inframe* parameter to `.Axes.draw` is deprecated. Use
276+
Signatures of `.Artist.draw` and `matplotlib.axes.Axes.draw`
277+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
278+
The *inframe* parameter to `matplotlib.axes.Axes.draw` is deprecated. Use
279279
`.Axes.redraw_in_frame` instead.
280280

281-
Not passing the *renderer* parameter to `.Axes.draw` is deprecated. Use
282-
``axes.draw_artist(axes)`` instead.
281+
Not passing the *renderer* parameter to `matplotlib.axes.Axes.draw` is
282+
deprecated. Use ``axes.draw_artist(axes)`` instead.
283283

284284
These changes make the signature of the ``draw`` (``artist.draw(renderer)``)
285285
method consistent across all artists; thus, additional parameters to

doc/api/prev_api_changes/api_changes_3.5.0/removals.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Arguments
260260

261261
- The *s* parameter to `.Axes.annotate` and `.pyplot.annotate` is no longer
262262
supported; use the new name *text*.
263-
- The *inframe* parameter to `.Axes.draw` has been removed; use
263+
- The *inframe* parameter to `matplotlib.axes.Axes.draw` has been removed; use
264264
`.Axes.redraw_in_frame` instead.
265265
- The *required*, *forbidden* and *allowed* parameters of
266266
`.cbook.normalize_kwargs` have been removed.
@@ -312,13 +312,13 @@ Arguments
312312
warning for keyword arguments that were overridden by the mappable is now
313313
removed.
314314

315-
- Omitting the *renderer* parameter to `.Axes.draw` is no longer supported; use
316-
``axes.draw_artist(axes)`` instead.
315+
- Omitting the *renderer* parameter to `matplotlib.axes.Axes.draw` is no longer
316+
supported; use ``axes.draw_artist(axes)`` instead.
317317
- Passing ``ismath="TeX!"`` to `.RendererAgg.get_text_width_height_descent` is
318318
no longer supported; pass ``ismath="TeX"`` instead,
319-
- Changes to the signature of the `.Axes.draw` method make it consistent with
320-
all other artists; thus additional parameters to `.Artist.draw` have also
321-
been removed.
319+
- Changes to the signature of the `matplotlib.axes.Axes.draw` method make it
320+
consistent with all other artists; thus additional parameters to
321+
`.Artist.draw` have also been removed.
322322

323323
rcParams
324324
~~~~~~~~

0 commit comments

Comments
 (0)