@@ -1295,8 +1295,7 @@ def grid(self, b=True, **kwargs):
1295
1295
:meth:`matplotlib.axes.Axes.grid`, but it is intended to
1296
1296
eventually support that behavior.
1297
1297
1298
- .. versionchanged :: 1.1.0
1299
- This function was changed, but not tested. Please report any bugs.
1298
+ .. versionadded :: 1.1.0
1300
1299
'''
1301
1300
# TODO: Operate on each axes separately
1302
1301
if len (kwargs ):
@@ -1411,7 +1410,6 @@ def tick_params(self, axis='both', **kwargs):
1411
1410
those who file bugs.
1412
1411
1413
1412
.. versionadded :: 1.1.0
1414
- This function was added, but not tested. Please report any bugs.
1415
1413
"""
1416
1414
cbook ._check_in_list (['x' , 'y' , 'z' , 'both' ], axis = axis )
1417
1415
if axis in ['x' , 'y' , 'both' ]:
@@ -1441,19 +1439,15 @@ def zaxis_inverted(self):
1441
1439
Returns True if the z-axis is inverted.
1442
1440
1443
1441
.. versionadded :: 1.1.0
1444
- This function was added, but not tested. Please report any bugs.
1445
1442
'''
1446
1443
bottom , top = self .get_zlim ()
1447
1444
return top < bottom
1448
1445
1449
1446
def get_zbound (self ):
1450
1447
"""
1451
- Returns the z-axis numerical bounds where::
1452
-
1453
- lowerBound < upperBound
1448
+ Return the lower and upper z-axis bounds, in increasing order.
1454
1449
1455
1450
.. versionadded :: 1.1.0
1456
- This function was added, but not tested. Please report any bugs.
1457
1451
"""
1458
1452
bottom , top = self .get_zlim ()
1459
1453
if bottom < top :
@@ -1468,7 +1462,6 @@ def set_zbound(self, lower=None, upper=None):
1468
1462
It will not change the :attr:`_autoscaleZon` attribute.
1469
1463
1470
1464
.. versionadded :: 1.1.0
1471
- This function was added, but not tested. Please report any bugs.
1472
1465
"""
1473
1466
if upper is None and np .iterable (lower ):
1474
1467
lower , upper = lower
0 commit comments