File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
doc/api/next_api_changes/deprecations Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ``w_xaxis ``, ``w_yaxis ``, and ``w_zaxis `` of ``Axis3D ``
2
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+ ... have been pending deprecation since 3.1. They are now deprecated.
5
+ Instead use ``xaxis ``, ``yaxis ``, and ``zaxis ``.
Original file line number Diff line number Diff line change @@ -225,11 +225,11 @@ def get_zaxis(self):
225
225
get_zgridlines = _axis_method_wrapper ("zaxis" , "get_gridlines" )
226
226
get_zticklines = _axis_method_wrapper ("zaxis" , "get_ticklines" )
227
227
228
- w_xaxis = _api .deprecated ("3.1" , alternative = "xaxis" , pending = True )(
228
+ w_xaxis = _api .deprecated ("3.1" , alternative = "xaxis" , removal = "3.8" )(
229
229
property (lambda self : self .xaxis ))
230
- w_yaxis = _api .deprecated ("3.1" , alternative = "yaxis" , pending = True )(
230
+ w_yaxis = _api .deprecated ("3.1" , alternative = "yaxis" , removal = "3.8" )(
231
231
property (lambda self : self .yaxis ))
232
- w_zaxis = _api .deprecated ("3.1" , alternative = "zaxis" , pending = True )(
232
+ w_zaxis = _api .deprecated ("3.1" , alternative = "zaxis" , removal = "3.8" )(
233
233
property (lambda self : self .zaxis ))
234
234
235
235
def unit_cube (self , vals = None ):
You can’t perform that action at this time.
0 commit comments