File tree 8 files changed +7
-18
lines changed 8 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -556,7 +556,6 @@ Drawing
556
556
Axes.draw
557
557
Axes.draw_artist
558
558
Axes.redraw_in_frame
559
- Axes.get_renderer_cache
560
559
561
560
Axes.get_rasterization_zorder
562
561
Axes.set_rasterization_zorder
Original file line number Diff line number Diff line change @@ -138,7 +138,6 @@ Rendering helpers
138
138
139
139
Axis.get_minpos
140
140
Axis.get_tick_space
141
- Axis.get_ticklabel_extents
142
141
Axis.get_tightbbox
143
142
144
143
@@ -179,7 +178,6 @@ XAxis Specific
179
178
:nosignatures:
180
179
181
180
XAxis.axis_name
182
- XAxis.get_text_heights
183
181
XAxis.get_ticks_position
184
182
XAxis.set_ticks_position
185
183
XAxis.set_label_position
@@ -195,7 +193,6 @@ YAxis Specific
195
193
:nosignatures:
196
194
197
195
YAxis.axis_name
198
- YAxis.get_text_widths
199
196
YAxis.get_ticks_position
200
197
YAxis.set_offset_position
201
198
YAxis.set_ticks_position
@@ -260,7 +257,6 @@ specify a matching series of labels. Calling ``set_ticks`` makes a
260
257
261
258
Tick.get_loc
262
259
Tick.get_pad
263
- Tick.get_pad_pixels
264
260
Tick.get_tick_padding
265
261
Tick.get_tickdir
266
262
Tick.get_view_interval
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ instead of ``\usepackage{ucs}\usepackage[utf8x]{inputenc}``.
463
463
464
464
Exception changes
465
465
-----------------
466
- - `mpl_toolkits.axes_grid1.axes_size.GetExtentHelper ` now raises `ValueError `
466
+ - `` mpl_toolkits.axes_grid1.axes_size.GetExtentHelper ` ` now raises `ValueError `
467
467
for invalid directions instead of `KeyError `.
468
468
- Previously, subprocess failures in the animation framework would raise either
469
469
in a `RuntimeError ` or a `ValueError ` depending on when the error occurred.
@@ -932,9 +932,9 @@ internal datetime representation; or use ``dates.datestr2num``.
932
932
Axes3D
933
933
~~~~~~
934
934
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 ` `
938
938
939
939
Use ``axes3d.Axes3D.xaxis ``, ``axes3d.Axes3D.yaxis `` and
940
940
``axes3d.Axes3D.zaxis `` instead.
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ The following module-level classes/variables have been removed:
94
94
``mathtext.latex_to_standard ``
95
95
- ``mathtext.MathtextBackendPdf ``, ``mathtext.MathtextBackendPs ``,
96
96
``mathtext.MathtextBackendSvg ``, ``mathtext.MathtextBackendCairo ``; use
97
- `.MathtextBackendPath ` instead.
97
+ `` .MathtextBackendPath ` ` instead.
98
98
- ``mathtext.Node `` and all its subclasses
99
99
- ``mathtext.NUM_SIZE_LEVELS ``
100
100
- ``mathtext.Parser ``
Original file line number Diff line number Diff line change @@ -270,9 +270,6 @@ Aliases and deprecated methods
270
270
tunit_cube
271
271
tunit_edges
272
272
unit_cube
273
- w_xaxis
274
- w_yaxis
275
- w_zaxis
276
273
277
274
278
275
Other
Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ default. The default face color is now ``'C0'`` instead of ``'b'``.
575
575
ax_bottom.set_ylim(0, .75)
576
576
ax_bottom.add_artist(mpatches.Rectangle(grid[1] - [0.025, 0.05],
577
577
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))
579
579
ax_bottom.add_artist(mpatches.Ellipse(grid[4], 0.2, 0.1))
580
580
ax_bottom.add_artist(mpatches.Circle(grid[0], 0.1))
581
581
ax_bottom.axis('off')
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ Support for strides in mlab
121
121
Todd Jennings added some functions to mlab to make it easier to use NumPy
122
122
strides to create memory-efficient 2D arrays. This includes
123
123
``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
125
125
to create a 2D array from a 1D array.
126
126
127
127
Formatter for new-style formatting strings
Original file line number Diff line number Diff line change 45
45
46
46
`detrend_none`
47
47
Return the original line.
48
-
49
- `stride_windows`
50
- Get all windows in an array in a memory-efficient manner
51
48
"""
52
49
53
50
import functools
You can’t perform that action at this time.
0 commit comments