@@ -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
@@ -3361,8 +3357,7 @@ def get_xmajorticklabels(self):
3361
3357
labels : list
3362
3358
List of `~matplotlib.text.Text` instances
3363
3359
"""
3364
- return cbook .silent_list ('Text xticklabel' ,
3365
- self .xaxis .get_majorticklabels ())
3360
+ return self .xaxis .get_majorticklabels ()
3366
3361
3367
3362
def get_xminorticklabels (self ):
3368
3363
"""
@@ -3373,8 +3368,7 @@ def get_xminorticklabels(self):
3373
3368
labels : list
3374
3369
List of `~matplotlib.text.Text` instances
3375
3370
"""
3376
- return cbook .silent_list ('Text xticklabel' ,
3377
- self .xaxis .get_minorticklabels ())
3371
+ return self .xaxis .get_minorticklabels ()
3378
3372
3379
3373
def get_xticklabels (self , minor = False , which = None ):
3380
3374
"""
@@ -3396,9 +3390,7 @@ def get_xticklabels(self, minor=False, which=None):
3396
3390
ret : list
3397
3391
List of `~matplotlib.text.Text` instances.
3398
3392
"""
3399
- return cbook .silent_list ('Text xticklabel' ,
3400
- self .xaxis .get_ticklabels (minor = minor ,
3401
- which = which ))
3393
+ return self .xaxis .get_ticklabels (minor = minor , which = which )
3402
3394
3403
3395
def set_xticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
3404
3396
"""
@@ -3744,8 +3736,7 @@ def get_ymajorticklabels(self):
3744
3736
labels : list
3745
3737
List of `~matplotlib.text.Text` instances
3746
3738
"""
3747
- return cbook .silent_list ('Text yticklabel' ,
3748
- self .yaxis .get_majorticklabels ())
3739
+ return self .yaxis .get_majorticklabels ()
3749
3740
3750
3741
def get_yminorticklabels (self ):
3751
3742
"""
@@ -3756,8 +3747,7 @@ def get_yminorticklabels(self):
3756
3747
labels : list
3757
3748
List of `~matplotlib.text.Text` instances
3758
3749
"""
3759
- return cbook .silent_list ('Text yticklabel' ,
3760
- self .yaxis .get_minorticklabels ())
3750
+ return self .yaxis .get_minorticklabels ()
3761
3751
3762
3752
def get_yticklabels (self , minor = False , which = None ):
3763
3753
"""
@@ -3779,9 +3769,7 @@ def get_yticklabels(self, minor=False, which=None):
3779
3769
ret : list
3780
3770
List of `~matplotlib.text.Text` instances.
3781
3771
"""
3782
- return cbook .silent_list ('Text yticklabel' ,
3783
- self .yaxis .get_ticklabels (minor = minor ,
3784
- which = which ))
3772
+ return self .yaxis .get_ticklabels (minor = minor , which = which )
3785
3773
3786
3774
def set_yticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
3787
3775
"""
0 commit comments