Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 159ee05

Browse files
committed
Fix documentation
1 parent f9ccf1e commit 159ee05

File tree

8 files changed

+7
-18
lines changed

8 files changed

+7
-18
lines changed

doc/api/axes_api.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,6 @@ Drawing
556556
Axes.draw
557557
Axes.draw_artist
558558
Axes.redraw_in_frame
559-
Axes.get_renderer_cache
560559

561560
Axes.get_rasterization_zorder
562561
Axes.set_rasterization_zorder

doc/api/axis_api.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ Rendering helpers
138138

139139
Axis.get_minpos
140140
Axis.get_tick_space
141-
Axis.get_ticklabel_extents
142141
Axis.get_tightbbox
143142

144143

@@ -179,7 +178,6 @@ XAxis Specific
179178
:nosignatures:
180179

181180
XAxis.axis_name
182-
XAxis.get_text_heights
183181
XAxis.get_ticks_position
184182
XAxis.set_ticks_position
185183
XAxis.set_label_position
@@ -195,7 +193,6 @@ YAxis Specific
195193
:nosignatures:
196194

197195
YAxis.axis_name
198-
YAxis.get_text_widths
199196
YAxis.get_ticks_position
200197
YAxis.set_offset_position
201198
YAxis.set_ticks_position
@@ -260,7 +257,6 @@ specify a matching series of labels. Calling ``set_ticks`` makes a
260257

261258
Tick.get_loc
262259
Tick.get_pad
263-
Tick.get_pad_pixels
264260
Tick.get_tick_padding
265261
Tick.get_tickdir
266262
Tick.get_view_interval

doc/api/prev_api_changes/api_changes_3.1.0.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ instead of ``\usepackage{ucs}\usepackage[utf8x]{inputenc}``.
463463

464464
Exception changes
465465
-----------------
466-
- `mpl_toolkits.axes_grid1.axes_size.GetExtentHelper` now raises `ValueError`
466+
- ``mpl_toolkits.axes_grid1.axes_size.GetExtentHelper`` now raises `ValueError`
467467
for invalid directions instead of `KeyError`.
468468
- Previously, subprocess failures in the animation framework would raise either
469469
in a `RuntimeError` or a `ValueError` depending on when the error occurred.
@@ -932,9 +932,9 @@ internal datetime representation; or use ``dates.datestr2num``.
932932
Axes3D
933933
~~~~~~
934934

935-
- `.axes3d.Axes3D.w_xaxis`
936-
- `.axes3d.Axes3D.w_yaxis`
937-
- `.axes3d.Axes3D.w_zaxis`
935+
- ``.axes3d.Axes3D.w_xaxis``
936+
- ``.axes3d.Axes3D.w_yaxis``
937+
- ``.axes3d.Axes3D.w_zaxis``
938938

939939
Use ``axes3d.Axes3D.xaxis``, ``axes3d.Axes3D.yaxis`` and
940940
``axes3d.Axes3D.zaxis`` instead.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The following module-level classes/variables have been removed:
9494
``mathtext.latex_to_standard``
9595
- ``mathtext.MathtextBackendPdf``, ``mathtext.MathtextBackendPs``,
9696
``mathtext.MathtextBackendSvg``, ``mathtext.MathtextBackendCairo``; use
97-
`.MathtextBackendPath` instead.
97+
``.MathtextBackendPath`` instead.
9898
- ``mathtext.Node`` and all its subclasses
9999
- ``mathtext.NUM_SIZE_LEVELS``
100100
- ``mathtext.Parser``

doc/api/toolkits/mplot3d/axes3d.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,6 @@ Aliases and deprecated methods
270270
tunit_cube
271271
tunit_edges
272272
unit_cube
273-
w_xaxis
274-
w_yaxis
275-
w_zaxis
276273

277274

278275
Other

doc/users/prev_whats_new/dflt_style_changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ default. The default face color is now ``'C0'`` instead of ``'b'``.
575575
ax_bottom.set_ylim(0, .75)
576576
ax_bottom.add_artist(mpatches.Rectangle(grid[1] - [0.025, 0.05],
577577
0.05, 0.1))
578-
ax_bottom.add_artist(mpatches.RegularPolygon(grid[3], 5, 0.1))
578+
ax_bottom.add_artist(mpatches.RegularPolygon(grid[3], 5, radius=0.1))
579579
ax_bottom.add_artist(mpatches.Ellipse(grid[4], 0.2, 0.1))
580580
ax_bottom.add_artist(mpatches.Circle(grid[0], 0.1))
581581
ax_bottom.axis('off')

doc/users/prev_whats_new/whats_new_1.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Support for strides in mlab
121121
Todd Jennings added some functions to mlab to make it easier to use NumPy
122122
strides to create memory-efficient 2D arrays. This includes
123123
``matplotlib.mlab.stride_repeat``, which repeats an array to create a 2D
124-
array, and :func:`~matplotlib.mlab.stride_windows`, which uses a moving window
124+
array, and ``matplotlib.mlab.stride_windows``, which uses a moving window
125125
to create a 2D array from a 1D array.
126126

127127
Formatter for new-style formatting strings

lib/matplotlib/mlab.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@
4545
4646
`detrend_none`
4747
Return the original line.
48-
49-
`stride_windows`
50-
Get all windows in an array in a memory-efficient manner
5148
"""
5249

5350
import functools

0 commit comments

Comments
 (0)