@@ -293,9 +293,9 @@ where the `.cm.ScalarMappable` passed to `matplotlib.colorbar.Colorbar`
293293(`~.Figure.colorbar `) had a ``set_norm `` method, as did the colorbar.
294294The colorbar is now purely a follower to the `.ScalarMappable ` norm and
295295colormap, and the old inherited methods
296- `~ matplotlib.colorbar.ColorbarBase.set_norm `,
297- `~ matplotlib.colorbar.ColorbarBase.set_cmap `,
298- `~ matplotlib.colorbar.ColorbarBase.set_clim ` are deprecated, as are
296+ `` matplotlib.colorbar.ColorbarBase.set_norm ` `,
297+ `` matplotlib.colorbar.ColorbarBase.set_cmap ` `,
298+ `` matplotlib.colorbar.ColorbarBase.set_clim ` ` are deprecated, as are
299299the getter versions of those calls. To set the norm associated with a
300300colorbar do ``colorbar.mappable.set_norm() `` etc.
301301
@@ -394,11 +394,11 @@ returned.
394394`matplotlib.font_manager.win32InstalledFonts ` returns an empty list instead
395395of None if no fonts are found.
396396
397- `. Axes.fmt_xdata ` and `. Axes.fmt_ydata ` error handling
398- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
397+ `` Axes.fmt_xdata `` and `` Axes.fmt_ydata ` ` error handling
398+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
399399
400- Previously, if the user provided a `. Axes.fmt_xdata ` or
401- `. Axes.fmt_ydata ` function that raised a `TypeError ` (or set them to a
400+ Previously, if the user provided a `` Axes.fmt_xdata ` ` or
401+ `` Axes.fmt_ydata ` ` function that raised a `TypeError ` (or set them to a
402402non-callable), the exception would be silently ignored and the default
403403formatter be used instead. This is no longer the case; the exception
404404is now propagated out.
@@ -476,7 +476,7 @@ Exception changes
476476- `.Axes.streamplot ` does not support irregularly gridded ``x `` and ``y `` values.
477477 So far, it used to silently plot an incorrect result. This has been changed to
478478 raise a `ValueError ` instead.
479- - The `. streamplot.Grid ` class, which is internally used by streamplot
479+ - The `` streamplot.Grid ` ` class, which is internally used by streamplot
480480 code, also throws a `ValueError ` when irregularly gridded values are
481481 passed in.
482482
@@ -566,7 +566,7 @@ in Matplotlib 2.2 has been removed. See below for a list:
566566- ``mlab.safe_isnan `` (use `numpy.isnan ` instead)
567567- ``mlab.cohere_pairs `` (use `scipy.signal.coherence ` instead)
568568- ``mlab.entropy `` (use `scipy.stats.entropy ` instead)
569- - ``mlab.normpdf `` (use `scipy.stats.norm.pdf ` instead)
569+ - ``mlab.normpdf `` (use `` scipy.stats.norm.pdf ` ` instead)
570570- ``mlab.find `` (use ``np.nonzero(np.ravel(condition)) `` instead)
571571- ``mlab.longest_contiguous_ones ``
572572- ``mlab.longest_ones ``
@@ -652,7 +652,7 @@ no longer available in the `pylab` module:
652652- ``longest_ones ``
653653- ``movavg ``
654654- ``norm_flat `` (use ``numpy.linalg.norm(a.flat, ord=2) `` instead)
655- - ``normpdf `` (use `scipy.stats.norm.pdf ` instead)
655+ - ``normpdf `` (use `` scipy.stats.norm.pdf ` ` instead)
656656- ``path_length ``
657657- ``poly_below ``
658658- ``poly_between ``
@@ -705,7 +705,7 @@ now a no-op).
705705
706706The image comparison test decorators now skip (rather than xfail) the test for
707707uncomparable formats. The affected decorators are `~.image_comparison ` and
708- `~.check_figures_equal `. The deprecated `~. ImageComparisonTest ` class is
708+ `~.check_figures_equal `. The deprecated `` ImageComparisonTest ` ` class is
709709likewise changed.
710710
711711Dependency changes
@@ -825,7 +825,7 @@ This has not been used in the codebase since its addition in 2009.
825825
826826 This has never been used internally, there is no equivalent method exists on
827827 the 2D Axis classes, and despite the similar name, it has a completely
828- different behavior from the 2D Axis' `axis.Axis.get_ticks_position ` method.
828+ different behavior from the 2D Axis' `` axis.Axis.get_ticks_position ` ` method.
829829- ``.backend_pgf.LatexManagerFactory ``
830830
831831- ``mpl_toolkits.axisartist.axislines.SimpleChainedObjects ``
@@ -936,16 +936,16 @@ Axes3D
936936- `.axes3d.Axes3D.w_yaxis `
937937- `.axes3d.Axes3D.w_zaxis `
938938
939- Use `. axes3d.Axes3D.xaxis `, `. axes3d.Axes3D.yaxis ` and ` .axes3d.Axes3D.zaxis `
940- instead.
939+ Use `` axes3d.Axes3D.xaxis `` , `` axes3d.Axes3D.yaxis `` and
940+ `` axes3d.Axes3D.zaxis `` instead.
941941
942942Testing
943943~~~~~~~
944944
945945- ``matplotlib.testing.decorators.switch_backend `` decorator
946946
947947Test functions should use ``pytest.mark.backend ``, and the mark will be
948- picked up by the `matplotlib.testing.conftest.mpl_test_settings ` fixture.
948+ picked up by the `` matplotlib.testing.conftest.mpl_test_settings ` ` fixture.
949949
950950Quiver
951951~~~~~~
@@ -1069,7 +1069,7 @@ Axis
10691069
10701070- ``Axis.iter_ticks ``
10711071
1072- This only served as a helper to the private `. Axis._update_ticks `
1072+ This only served as a helper to the private `` Axis._update_ticks ` `
10731073
10741074
10751075Undeprecations
@@ -1123,10 +1123,10 @@ The `.Formatter` class gained a new `~.Formatter.format_ticks` method, which
11231123takes the list of all tick locations as a single argument and returns the list
11241124of all formatted values. It is called by the axis tick handling code and, by
11251125default, first calls `~.Formatter.set_locs ` with all locations, then repeatedly
1126- calls `~. Formatter.__call__ ` for each location.
1126+ calls `` Formatter.__call__ ` ` for each location.
11271127
11281128Tick-handling code in the codebase that previously performed this sequence
1129- (`~.Formatter.set_locs ` followed by repeated `~. Formatter.__call__ `) have been
1129+ (`~.Formatter.set_locs ` followed by repeated `` Formatter.__call__ ` `) have been
11301130updated to use `~.Formatter.format_ticks `.
11311131
11321132`~.Formatter.format_ticks ` is intended to be overridden by `.Formatter `
0 commit comments