@@ -1765,27 +1765,23 @@ def get_xaxis(self):
1765
1765
1766
1766
def get_xgridlines (self ):
1767
1767
"""Get the x grid lines as a list of `Line2D` instances."""
1768
- return cbook .silent_list ('Line2D xgridline' ,
1769
- self .xaxis .get_gridlines ())
1768
+ return self .xaxis .get_gridlines ()
1770
1769
1771
1770
def get_xticklines (self ):
1772
1771
"""Get the x tick lines as a list of `Line2D` instances."""
1773
- return cbook .silent_list ('Line2D xtickline' ,
1774
- self .xaxis .get_ticklines ())
1772
+ return self .xaxis .get_ticklines ()
1775
1773
1776
1774
def get_yaxis (self ):
1777
1775
"""Return the YAxis instance."""
1778
1776
return self .yaxis
1779
1777
1780
1778
def get_ygridlines (self ):
1781
1779
"""Get the y grid lines as a list of `Line2D` instances."""
1782
- return cbook .silent_list ('Line2D ygridline' ,
1783
- self .yaxis .get_gridlines ())
1780
+ return self .yaxis .get_gridlines ()
1784
1781
1785
1782
def get_yticklines (self ):
1786
1783
"""Get the y tick lines as a list of `Line2D` instances."""
1787
- return cbook .silent_list ('Line2D ytickline' ,
1788
- self .yaxis .get_ticklines ())
1784
+ return self .yaxis .get_ticklines ()
1789
1785
1790
1786
# Adding and tracking artists
1791
1787
@@ -3358,8 +3354,7 @@ def get_xmajorticklabels(self):
3358
3354
labels : list
3359
3355
List of `~matplotlib.text.Text` instances
3360
3356
"""
3361
- return cbook .silent_list ('Text xticklabel' ,
3362
- self .xaxis .get_majorticklabels ())
3357
+ return self .xaxis .get_majorticklabels ()
3363
3358
3364
3359
def get_xminorticklabels (self ):
3365
3360
"""
@@ -3370,8 +3365,7 @@ def get_xminorticklabels(self):
3370
3365
labels : list
3371
3366
List of `~matplotlib.text.Text` instances
3372
3367
"""
3373
- return cbook .silent_list ('Text xticklabel' ,
3374
- self .xaxis .get_minorticklabels ())
3368
+ return self .xaxis .get_minorticklabels ()
3375
3369
3376
3370
def get_xticklabels (self , minor = False , which = None ):
3377
3371
"""
@@ -3393,9 +3387,7 @@ def get_xticklabels(self, minor=False, which=None):
3393
3387
ret : list
3394
3388
List of `~matplotlib.text.Text` instances.
3395
3389
"""
3396
- return cbook .silent_list ('Text xticklabel' ,
3397
- self .xaxis .get_ticklabels (minor = minor ,
3398
- which = which ))
3390
+ return self .xaxis .get_ticklabels (minor = minor , which = which )
3399
3391
3400
3392
def set_xticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
3401
3393
"""
@@ -3738,8 +3730,7 @@ def get_ymajorticklabels(self):
3738
3730
labels : list
3739
3731
List of `~matplotlib.text.Text` instances
3740
3732
"""
3741
- return cbook .silent_list ('Text yticklabel' ,
3742
- self .yaxis .get_majorticklabels ())
3733
+ return self .yaxis .get_majorticklabels ()
3743
3734
3744
3735
def get_yminorticklabels (self ):
3745
3736
"""
@@ -3750,8 +3741,7 @@ def get_yminorticklabels(self):
3750
3741
labels : list
3751
3742
List of `~matplotlib.text.Text` instances
3752
3743
"""
3753
- return cbook .silent_list ('Text yticklabel' ,
3754
- self .yaxis .get_minorticklabels ())
3744
+ return self .yaxis .get_minorticklabels ()
3755
3745
3756
3746
def get_yticklabels (self , minor = False , which = None ):
3757
3747
"""
@@ -3773,9 +3763,7 @@ def get_yticklabels(self, minor=False, which=None):
3773
3763
ret : list
3774
3764
List of `~matplotlib.text.Text` instances.
3775
3765
"""
3776
- return cbook .silent_list ('Text yticklabel' ,
3777
- self .yaxis .get_ticklabels (minor = minor ,
3778
- which = which ))
3766
+ return self .yaxis .get_ticklabels (minor = minor , which = which )
3779
3767
3780
3768
def set_yticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
3781
3769
"""
0 commit comments