@@ -65,7 +65,7 @@ This new default may be overridden in either of three ways:
6565------------------------------------------------------------------
6666
6767`Text.set_text ` when passed a string value of ``None `` would set the
68- string to ``"None" ``, so subsequent calls to `Text.get_text ` would return
68+ string to ``"None" ``, so subsequent calls to `. Text.get_text ` would return
6969the ambiguous ``"None" `` string.
7070
7171This change sets text objects passed ``None `` to have empty strings, so that
@@ -106,7 +106,7 @@ Different exception types for undocumented options
106106- Passing the undocumented ``xmin `` or ``xmax `` arguments to
107107 :meth: `~matplotlib.axes.Axes.set_xlim ` would silently override the ``left ``
108108 and ``right `` arguments. :meth: `~matplotlib.axes.Axes.set_ylim ` and the
109- 3D equivalents (e.g. :meth: ` ~mpl_toolkits.axes .Axes3D.set_zlim3d `) had a
109+ 3D equivalents (e.g. ` ~ .Axes3D.set_zlim3d `) had a
110110 corresponding problem.
111111 A ``TypeError `` will be raised if they would override the earlier
112112 limit arguments. In 3.0 these were kwargs were deprecated, but in 3.1
@@ -116,14 +116,14 @@ Different exception types for undocumented options
116116Improved call signature for ``Axes.margins ``
117117--------------------------------------------
118118
119- :meth: ` matplotlib.axes. Axes.margins ` and :meth: ` mpl_toolkits.mplot3d .Axes3D.margins `
119+ ` . Axes.margins ` and ` .Axes3D.margins `
120120no longer accept arbitrary keywords. ``TypeError `` will therefore be raised
121121if unknown kwargs are passed; previously they would be silently ignored.
122122
123123If too many positional arguments are passed, ``TypeError `` will be raised
124124instead of ``ValueError ``, for consistency with other call-signature violations.
125125
126- `` Axes3D.margins ` ` now raises ``TypeError `` instead of emitting a deprecation
126+ `. Axes3D.margins ` now raises ``TypeError `` instead of emitting a deprecation
127127warning if only two positional arguments are passed. To supply only ``x `` and
128128``y `` margins, use keyword arguments.
129129
@@ -140,7 +140,7 @@ now raise ``TypeError`` because ``**kwargs`` has been removed.
140140
141141- :meth: `matplotlib.axes.Axes.stem ` no longer accepts unknown keywords,
142142 and raises ``TypeError `` instead of emitting a deprecation.
143- - :meth: `matplotlib.axex .Axes.stem ` now raises TypeError when passed
143+ - :meth: `matplotlib.axes .Axes.stem ` now raises TypeError when passed
144144 unhandled positional arguments. If two or more arguments are passed
145145 (ie X, Y, [linefmt], ...) and Y cannot be cast to an array, an error
146146 will be raised instead of treating X as Y and Y as linefmt.
@@ -161,18 +161,18 @@ Non-interactive FigureManager classes are now aliases of FigureManagerBase
161161--------------------------------------------------------------------------
162162
163163The `FigureManagerPdf `, `FigureManagerPS `, and `FigureManagerSVG ` classes,
164- which were previously empty subclasses of `FigureManagerBase ` (i.e., not
164+ which were previously empty subclasses of `. FigureManagerBase ` (i.e., not
165165adding or overriding any attribute or method), are now direct aliases for
166- `FigureManagerBase `.
166+ `. FigureManagerBase `.
167167
168168
169169Change to the output of `.image.thumbnail `
170170------------------------------------------
171171
172172When called with ``preview=False ``, `.image.thumbnail ` previously returned an
173173figure whose canvas class was set according to the output file extension. It
174- now returns a figure whose canvas class is the base `FigureCanvasBase ` (and
175- relies on `FigureCanvasBase.print_figure `) to handle the canvas switching
174+ now returns a figure whose canvas class is the base `. FigureCanvasBase ` (and
175+ relies on `. FigureCanvasBase.print_figure `) to handle the canvas switching
176176properly).
177177
178178As a side effect of this change, `.image.thumbnail ` now also supports .ps, .eps,
@@ -204,7 +204,7 @@ When contour is called with levels specified as a target number rather
204204than a list, and the 'extend' kwarg is used, the levels are now chosen
205205such that some data typically will fall in the extended range.
206206
207- When contour is called with a `LogNorm ` or a `LogLocator `, it will now
207+ When contour is called with a `. LogNorm ` or a `. LogLocator `, it will now
208208select colors using the geometric mean rather than the arithmetic mean
209209of the contour levels.
210210
@@ -216,8 +216,8 @@ A bug was fixed where the last row and column of data in
216216`~.Axes.axes.streamplot ` were being dropped.
217217
218218
219- Changed default `AutoDateLocator ` kwarg *interval_multiples * to ``True ``
220- ------------------------------------------------------------------------
219+ Changed default `. AutoDateLocator ` kwarg *interval_multiples * to ``True ``
220+ -------------------------------------------------------------------------
221221
222222The default value of the tick locator for dates, `.dates.AutoDateLocator `
223223kwarg *interval_multiples * was set to ``False `` which leads to not-nice
@@ -278,7 +278,7 @@ original behavior.
278278Colorbar for log-scaled hexbin
279279------------------------------
280280
281- When using `hexbin ` and plotting with a logarithmic color scale, the colorbar
281+ When using `~.Axes. hexbin ` and plotting with a logarithmic color scale, the colorbar
282282ticks are now correctly log scaled. Previously the tick values were linear
283283scaled log(number of counts).
284284
@@ -292,10 +292,11 @@ regardless of the default color. However, this means that there is no way to
292292fall back on the default color of the renderer.
293293
294294
295- Blacklisted rcparams no longer updated by `rcdefaults `, `rc_file_defaults `, `rc_file `
296- -------------------------------------------------------------------------------------
295+ Blacklisted rcparams no longer updated by `~matplotlib. rcdefaults `, `~matplotlib. rc_file_defaults `, `~matplotlib. rc_file `
296+ -------------------------------------------------------------------------------------------------------------------------
297297
298- The rc modifier functions `rcdefaults `, `rc_file_defaults ` and `rc_file `
298+ The rc modifier functions `~matplotlib.rcdefaults `,
299+ `~matplotlib.rc_file_defaults ` and `~matplotlib.rc_file `
299300now ignore rcParams in the `matplotlib.style.core.STYLE_BLACKLIST ` set. In
300301particular, this prevents the ``backend `` and ``interactive `` rcParams from
301302being incorrectly modified by these functions.
@@ -328,7 +329,7 @@ Return type of ArtistInspector.get_aliases changed
328329was used to simulate a set in earlier versions of Python. It has now been
329330replaced by a set, i.e. ``{fullname: {alias1, alias2, ...}} ``.
330331
331- This value is also stored in `ArtistInspector.aliasd `, which has likewise
332+ This value is also stored in `. ArtistInspector.aliasd `, which has likewise
332333changed.
333334
334335
@@ -349,10 +350,10 @@ Modules
349350```````
350351The following modules are deprecated:
351352
352- - :mod: ` matplotlib.compat.subprocess `. This was a python 2 workaround, but all
353+ - `` matplotlib.compat.subprocess ` `. This was a python 2 workaround, but all
353354 the functionality can now be found in the python 3 standard library
354355 :mod: `subprocess `.
355- - :mod: ` matplotlib.backends.wx_compat `. Python 3 is only compatible with
356+ - `` matplotlib.backends.wx_compat ` `. Python 3 is only compatible with
356357 wxPython 4, so support for wxPython 3 or earlier can be dropped.
357358
358359Classes, methods, functions, and attributes
@@ -382,7 +383,7 @@ The following classes, methods, functions, and attributes are deprecated:
382383- ``font_manager.TempCache ``
383384- ``image._ImageBase.iterpnames ``, use the ``interpolation_names `` property
384385 instead. (this affects classes that inherit from ``_ImageBase `` including
385- :class: ` FigureImage `, :class: ` BboxImage `, and :class: ` AxesImage `)
386+ ` . FigureImage `, ` . BboxImage `, and ` . AxesImage `)
386387- ``mathtext.unichr_safe `` (use ``chr `` instead)
387388- ``patches.Polygon.xy ``
388389- ``table.Table.get_child_artists `` (use ``get_children `` instead)
@@ -395,7 +396,7 @@ The following classes, methods, functions, and attributes are deprecated:
395396- ``FigureCanvasWx.macros ``
396397- ``_ImageBase.iterpnames ``, use the ``interpolation_names `` property instead.
397398 (this affects classes that inherit from ``_ImageBase `` including
398- :class: ` FigureImage `, :class: ` BboxImage `, and :class: ` AxesImage `)
399+ ` . FigureImage `, ` . BboxImage `, and ` . AxesImage `)
399400- ``patches.Polygon.xy ``
400401- ``texmanager.dvipng_hack_alpha ``
401402- ``text.Annotation.arrow ``
0 commit comments