@@ -50,10 +50,10 @@ A function which take and ``Exception`` as its only argument may also be passed
5050Improved toggling of the axes grids
5151-----------------------------------
5252
53- The `g ` key binding now switches the states of the `x ` and `y ` grids
53+ The `` g `` key binding now switches the states of the `` x `` and `` y ` ` grids
5454independently (by cycling through all four on/off combinations).
5555
56- The new `G ` key binding switches the states of the minor grids.
56+ The new `` G ` ` key binding switches the states of the minor grids.
5757
5858Both bindings are disabled if only a subset of the grid lines (in either
5959direction) is visible, to avoid making irreversible changes to the figure.
@@ -62,7 +62,7 @@ direction) is visible, to avoid making irreversible changes to the figure.
6262Ticklabels are turned off instead of being invisible
6363----------------------------------------------------
6464
65- Internally, the `Tick `'s :func: ` ~matplotlib.axis.Tick.label1On ` attribute
65+ Internally, the `. Tick `'s `` ~matplotlib.axis.Tick.label1On ` ` attribute
6666is now used to hide tick labels instead of setting the visibility on the tick
6767label objects.
6868This improves overall performance and fixes some issues.
@@ -78,15 +78,15 @@ needs to be used, e.g.
7878Removal of warning on empty legends
7979-----------------------------------
8080
81- `` plt. legend` ` used to issue a warning when no labeled artist could be
81+ `.pyplot. legend ` used to issue a warning when no labeled artist could be
8282found. This warning has been removed.
8383
8484
8585More accurate legend autopositioning
8686------------------------------------
8787
8888Automatic positioning of legends now prefers using the area surrounded
89- by a `Line2D ` rather than placing the legend over the line itself.
89+ by a `. Line2D ` rather than placing the legend over the line itself.
9090
9191
9292Cleanup of stock sample data
@@ -100,8 +100,9 @@ the ``msft.csv`` that continues to be shipped in the sample data. If a NumPy
100100binary file is acceptable, we suggest using one of the following two new files.
101101The ``aapl.npy.gz `` and ``goog.npy `` files have been replaced by ``aapl.npz ``
102102and ``goog.npz ``, wherein the first column's type has changed from
103- `datetime.date ` to `np.datetime64 ` for better portability across Python
104- versions. Note that Matplotlib does not fully support `np.datetime64 ` as yet.
103+ `datetime.date ` to `numpy.datetime64 ` for better portability across Python
104+ versions. Note that Matplotlib does not fully support `numpy.datetime64 ` as
105+ yet.
105106
106107
107108Updated qhull to 2015.2
@@ -120,7 +121,7 @@ using Matplotlib, i.e. any use of `matplotlib.tri.Triangulation` that
120121requests that a Delaunay triangulation is calculated, which includes
121122`matplotlib.pyplot.tricontour `, `matplotlib.pyplot.tricontourf `,
122123`matplotlib.pyplot.tripcolor `, `matplotlib.pyplot.triplot `,
123- `matplotlib.mlab.griddata ` and
124+ `` matplotlib.mlab.griddata ` ` and
124125`mpl_toolkits.mplot3d.axes3d.Axes3D.plot_trisurf `.
125126
126127
@@ -135,7 +136,7 @@ It's better maintained and more widely used (by pylint, jaraco, etc).
135136``cbook.is_numlike `` only performs an instance check
136137----------------------------------------------------
137138
138- :func: ` ~ matplotlib.cbook.is_numlike ` now only checks that its argument
139+ `` matplotlib.cbook.is_numlike ` ` now only checks that its argument
139140is an instance of ``(numbers.Number, np.Number) ``. In particular,
140141this means that arrays are now not num-like.
141142
@@ -195,14 +196,14 @@ will be removed in 2.2
195196
196197
197198
198- Correct scaling of :func: ` magnitude_spectrum() `
199- -----------------------------------------------
199+ Correct scaling of `` magnitude_spectrum() ` `
200+ -------------------------------------------
200201
201202The functions :func: `matplotlib.mlab.magnitude_spectrum() ` and :func: `matplotlib.pyplot.magnitude_spectrum() ` implicitly assumed the sum
202203of windowing function values to be one. In Matplotlib and Numpy the
203204standard windowing functions are scaled to have maximum value of one,
204205which usually results in a sum of the order of n/2 for a n-point
205- signal. Thus the amplitude scaling :func: ` magnitude_spectrum() ` was
206+ signal. Thus the amplitude scaling `` magnitude_spectrum() ` ` was
206207off by that amount when using standard windowing functions (`Bug 8417
207208<https://github.com/matplotlib/matplotlib/issues/8417> `_ ). Now the
208209behavior is consistent with :func: `matplotlib.pyplot.psd() ` and
@@ -295,13 +296,13 @@ Third-party backends should also migrate to the ``*_dashes`` methods.
295296``NavigationToolbar2.dynamic_update ``
296297~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
297298
298- Use :meth: `draw_idle ` method on the ``Canvas `` instance instead.
299+ Use :meth: `. draw_idle ` method on the ``Canvas `` instance instead.
299300
300301
301302Testing
302303~~~~~~~
303304
304- `matplotlib.testing.noseclasses ` is deprecated and will be removed in 2.3
305+ `` matplotlib.testing.noseclasses ` ` is deprecated and will be removed in 2.3
305306
306307
307308``EngFormatter `` *num * arg as string
@@ -314,9 +315,9 @@ Passing a string as *num* argument when calling an instance of
314315``mpl_toolkits.axes_grid `` module
315316~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
316317
317- All functionally from `mpl_toolkits.axes_grid ` can be found in either
318+ All functionally from `` mpl_toolkits.axes_grid ` ` can be found in either
318319`mpl_toolkits.axes_grid1 ` or `mpl_toolkits.axisartist `. Axes classes
319- from `mpl_toolkits.axes_grid ` based on `Axis ` from
320+ from `` mpl_toolkits.axes_grid `` based on `` Axis ` ` from
320321`mpl_toolkits.axisartist ` can be found in `mpl_toolkits.axisartist `.
321322
322323
@@ -402,9 +403,9 @@ The deprecated ``matplotlib.rcsetup.validate_maskedarray``,
402403removed.
403404
404405
405- The kwarg `` resolution `` of
406+ The keyword argument * resolution * of
406407:class: `matplotlib.projections.polar.PolarAxes ` has been removed. It
407- has deprecation with no effect from version ` 0.98.x ` .
408+ has deprecation with no effect from version * 0.98.x * .
408409
409410
410411``Axes.set_aspect("normal") ``
@@ -421,8 +422,8 @@ The ``shading`` kwarg to `~matplotlib.axes.Axes.pcolor` has been
421422removed. Set ``edgecolors `` appropriately instead.
422423
423424
424- Functions removed from the `lines ` module
425- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
425+ Functions removed from the `. lines ` module
426+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
426427
427428The :mod: `matplotlib.lines ` module no longer imports the
428429``pts_to_prestep ``, ``pts_to_midstep `` and ``pts_to_poststep ``
@@ -433,7 +434,7 @@ PDF backend functions
433434~~~~~~~~~~~~~~~~~~~~~
434435
435436The methods ``embedTeXFont `` and ``tex_font_mapping `` of
436- :class: `matplotlib.backqend_pdf .PdfFile ` have been removed. It is
437+ :class: `matplotlib.backends.backend_pdf .PdfFile ` have been removed. It is
437438unlikely that external users would have called these methods, which
438439are related to the font system internal to the PDF backend.
439440
0 commit comments