@@ -74,7 +74,7 @@ Previously, certain locator classes (`~.ticker.LogLocator`,
74
74
tick locations that collided with major ticks when they were used as
75
75
minor locators. This logic has now moved to the `~.axis.Axis ` class,
76
76
and is used regardless of the locator class. You can control this
77
- behavior via the `~.Axis.remove_overlaping_locs ` attribute on
77
+ behavior via the `~.Axis.remove_overlapping_locs ` attribute on
78
78
`~.axis.Axis `.
79
79
80
80
If you were relying on both the major and minor tick labels to appear
@@ -236,18 +236,18 @@ Input that consists of multiple empty lists will now return a list of histogram
236
236
values for each one of the lists. For example, an input of ``[[],[]] `` will
237
237
return 2 lists of histogram values. Previously, a single list was returned.
238
238
239
- `. backend_bases.Timer .remove_callback ` future signature change
240
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
239
+ `` backend_bases.TimerBase .remove_callback ` ` future signature change
240
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
241
241
242
- Currently, ``backend_bases.Timer .remove_callback(func, *args,
242
+ Currently, ``backend_bases.TimerBase .remove_callback(func, *args,
243
243
**kwargs) `` removes a callback previously added by
244
244
``backend_bases.Timer.add_callback(func, *args, **kwargs) ``, but if
245
- ``*args, **kwargs `` is not passed in (ex ,
246
- ``Timer .remove_callback(func) ``), then the first callback with a
245
+ ``*args, **kwargs `` is not passed in (i.e. ,
246
+ ``TimerBase .remove_callback(func) ``), then the first callback with a
247
247
matching ``func `` is removed, regardless of whether it was added with
248
248
or without ``*args, **kwargs ``.
249
249
250
- In a future version, `` Timer. remove_callback` ` will always use the latter
250
+ In a future version, `.TimerBase. remove_callback ` will always use the latter
251
251
behavior (not consider ``*args, **kwargs ``); to specifically consider them, add
252
252
the callback as a `functools.partial ` object ::
253
253
@@ -256,7 +256,7 @@ the callback as a `functools.partial` object ::
256
256
# later
257
257
timer.remove_callback(cb)
258
258
259
- `.backend_bases.Timer .add_callback ` was modified to return *func * to
259
+ `.TimerBase .add_callback ` was modified to return *func * to
260
260
simplify the above usage (previously it returned None); this also
261
261
allows using it as a decorator.
262
262
@@ -279,7 +279,7 @@ be set to `True` ::
279
279
280
280
Individual line segments can be extracted from the
281
281
`~.collections.LineCollection ` using
282
- `~.collections.LineCollection.get_segements () `. See the
282
+ `~.collections.LineCollection.get_segments () `. See the
283
283
`~.collections.LineCollection ` documentation for other methods to
284
284
retrieve the collection properties.
285
285
@@ -796,10 +796,10 @@ Changes in parameter names
796
796
- The *s * parameter to `.Annotation ` (and indirectly `.Axes.annotate `) has
797
797
been renamed to *text *.
798
798
- The *tolerence * parameter to
799
- `bezier.find_bezier_t_intersecting_with_closedpath `,
800
- `bezier.split_bezier_intersecting_with_closedpath `,
801
- `bezier.find_r_to_boundary_of_closedpath `,
802
- `bezier.split_path_inout ` and `bezier.check_if_parallel ` has been renamed to
799
+ `. bezier.find_bezier_t_intersecting_with_closedpath `,
800
+ `. bezier.split_bezier_intersecting_with_closedpath `,
801
+ `` bezier.find_r_to_boundary_of_closedpath ` `,
802
+ `. bezier.split_path_inout ` and `. bezier.check_if_parallel ` has been renamed to
803
803
*tolerance *.
804
804
805
805
In each case, the old parameter name remains supported (it cannot be used
@@ -961,11 +961,11 @@ GUI / backend details
961
961
962
962
- ``.get_py2exe_datafiles ``
963
963
- ``.tk_window_focus ``
964
- - `.backend_gtk3.FileChooserDialog `
965
- - `.backend_gtk3.NavigationToolbar2GTK3.get_filechooser `
966
- - `.backend_gtk3.SaveFigureGTK3.get_filechooser `
967
- - `.NavigationToolbar2QT.adj_window ` attribute. This is unused and always ``None ``.
968
- - `.backend_wx.IDLE_DELAY ` global variable
964
+ - `` .backend_gtk3.FileChooserDialog ` `
965
+ - `` .backend_gtk3.NavigationToolbar2GTK3.get_filechooser ` `
966
+ - `` .backend_gtk3.SaveFigureGTK3.get_filechooser ` `
967
+ - `` .NavigationToolbar2QT.adj_window ` ` attribute. This is unused and always ``None ``.
968
+ - `` .backend_wx.IDLE_DELAY ` ` global variable
969
969
This is unused and only relevant to the now removed wx "idling" code (note that
970
970
as it is a module-level global, no deprecation warning is emitted when
971
971
accessing it).
@@ -1021,7 +1021,7 @@ Use `~.path.get_path_collection_extents` instead.
1021
1021
1022
1022
Use ``not np.isfinite(path.vertices).all() `` instead.
1023
1023
1024
- - `.bezier.find_r_to_boundary_of_closedpath ` function is deprecated
1024
+ - `` .bezier.find_r_to_boundary_of_closedpath ` ` function is deprecated
1025
1025
1026
1026
This has always returned None instead of the requested radius.
1027
1027
0 commit comments